- bump versions
Some checks reported errors
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 12s
continuous-integration/drone/push Build was killed

This commit is contained in:
oonyeje 2025-03-01 23:30:34 -05:00
parent d79730ab37
commit aaeaff6ad1

View File

@ -15,18 +15,18 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Login to Gitea Registry - name: Login to Gitea Registry
run: | run: |
echo "${{ secrets.TOKEN }}" | docker login ${{ gitea.server_url }} --username ${{ gitea.actor }} --password-stdin echo "${{ secrets.TOKEN }}" | docker login ${{ gitea.server_url }} --username ${{ gitea.actor }} --password-stdin
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v3
- name: Build and push Docker image (from docker-compose) - name: Build and push Docker image (from docker-compose)
id: docker_build id: docker_build
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
with: with:
provenance: false provenance: false
context: . context: .
@ -46,7 +46,7 @@ jobs:
- name: Push latest tag (optional) - name: Push latest tag (optional)
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
with: with:
provenance: false provenance: false
context: . context: .