24 lines
547 B
YAML
24 lines
547 B
YAML
|
name: Publish Docker image
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Log in to Docker Hub
|
||
|
uses: docker/login-action@v3
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||
|
|
||
|
- name: Build and push Docker image
|
||
|
run: |
|
||
|
docker build -t sevenwate/endofyear:latest .
|
||
|
docker push sevenwate/endofyear:latest
|