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 * * *'
@@ -34,10 +34,10 @@ 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@v7
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}