polloer/.github/workflows/docker-publish.yml
Torsten Simon 633c6842b7 ci/cd
2025-04-29 20:49:30 +02:00

27 lines
633 B
YAML

name: Build and Push Docker Image
on:
push:
branches: [ main ]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and tag Docker image
run: |
docker build -t ${{ secrets.DOCKER_USERNAME }}/polloer:latest .
- name: Push to Docker Hub
run: |
docker push ${{ secrets.DOCKER_USERNAME }}/polloer:latest