feat(ci/cd): push image to docker hub on push to main

This commit is contained in:
Pihkaal
2024-10-25 01:06:25 +02:00
parent 3586df5b7a
commit 988e1ac756
2 changed files with 29 additions and 4 deletions

28
.github/workflows/docker-build.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
docker build -t pihkaal/me:latest --build-arg GH_PAT=${{ secrets.GH_PAT }} .
docker push pihkaal/me:latest