mirror of
https://github.com/michivonah/themepark-alerts.git
synced 2025-12-22 20:36:27 +01:00
18 lines
424 B
YAML
18 lines
424 B
YAML
name: Docker-Hub-Autopublishing
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: debian-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build docker image and push to docker hub
|
|
run: |
|
|
echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u michivonah --password-stdin
|
|
docker image build -t michivonah/ep-alerts:latest .
|
|
docker push michivonah/ep-alerts:latest
|