2 Commits

Author SHA1 Message Date
Julien Cabillot b5cd166f1b test
Docker build and push / build (pull_request) Successful in 2m15s
2026-05-29 08:56:52 -04:00
Julien Cabillot 7a54bdc027 feat: add gitea actions
Docker Build and Push / build (push) Successful in 2m34s
2026-05-29 08:56:07 -04:00
+5 -5
View File
@@ -1,10 +1,10 @@
name: Docker Build and Push
name: Docker build and push
on:
pull_request:
branches: [main]
branches: [master]
push:
branches: [main]
branches: [master]
schedule:
- cron: '0 0 * * *'
@@ -20,7 +20,7 @@ jobs:
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v4
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -34,7 +34,7 @@ jobs:
type=ref,event=branch
type=ref,event=pr
type=sha
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
- name: Build and push
uses: docker/build-push-action@v6