From 5b9138da25d1c53450167adf49250c33b2766e52 Mon Sep 17 00:00:00 2001 From: Samuel Enocsson Date: Fri, 22 May 2026 15:22:41 +0200 Subject: [PATCH] ci: fix deploy.yml and consolidate workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix YAML indentation (on:/jobs: were nested under name:), correct image name from shcizo/myapp to shcizo/pdga-rating, switch registry auth from GITEA_TOKEN to PACKAGES_TOKEN (auto-injected token lacks effective registry access), and add packages:write permission. Remove docker-build.yml since deploy.yml now covers build + push + deploy in one workflow — previously both triggered on tag push and raced for the same image tags. --- .gitea/workflows/deploy.yml | 69 ++++++++++++++++--------------- .gitea/workflows/docker-build.yml | 37 ----------------- 2 files changed, 36 insertions(+), 70 deletions(-) delete mode 100644 .gitea/workflows/docker-build.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 81235c6..bfbe8ab 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,39 +1,42 @@ name: Build and deploy - on: - push: - tags: - - "v*" +on: + push: + tags: + - "v*" - jobs: - build-and-push: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 +jobs: + build-and-push: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 - - name: Login to Gitea registry - uses: docker/login-action@v3 - with: - registry: gitea.shcizo.se - username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} + - name: Login to Gitea registry + uses: docker/login-action@v3 + with: + registry: gitea.shcizo.se + username: ${{ gitea.actor }} + password: ${{ secrets.PACKAGES_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: | - gitea.shcizo.se/shcizo/myapp:${{ gitea.ref_name }} - gitea.shcizo.se/shcizo/myapp:latest + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: | + gitea.shcizo.se/shcizo/pdga-rating:${{ gitea.ref_name }} + gitea.shcizo.se/shcizo/pdga-rating:latest - deploy: - runs-on: ubuntu-latest - needs: [build-and-push] - steps: - - uses: shcizo/package-updater-action@v1 - with: - endpoint: https://updater.shcizo.se/update - image: gitea.shcizo.se/shcizo/myapp - tag: ${{ gitea.ref_name }} - token: ${{ secrets.UPDATER_TOKEN }} + deploy: + runs-on: ubuntu-latest + needs: [build-and-push] + steps: + - uses: shcizo/package-updater-action@v1 + with: + endpoint: https://updater.shcizo.se/update + image: gitea.shcizo.se/shcizo/pdga-rating + tag: ${{ gitea.ref_name }} + token: ${{ secrets.UPDATER_TOKEN }} diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml deleted file mode 100644 index 274d97b..0000000 --- a/.gitea/workflows/docker-build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Docker Build - -on: - push: - tags: - - 'v*' - -jobs: - docker: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - uses: actions/checkout@v4 - - - uses: docker/login-action@v3 - with: - registry: gitea.shcizo.se - username: ${{ gitea.actor }} - password: ${{ secrets.PACKAGES_TOKEN }} - - - uses: docker/metadata-action@v5 - id: meta - with: - images: gitea.shcizo.se/shcizo/pdga-rating - tags: | - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=raw,value=latest - - - uses: docker/build-push-action@v6 - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}