2 Commits

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