From aaf888f18293e7976e736edcb41bc32b4d0a10fa Mon Sep 17 00:00:00 2001 From: Starystars67 Date: Sun, 12 Apr 2026 23:37:22 +0100 Subject: [PATCH] Update release workflow by removing CA cert step Removed installation of registry CA certificate and updated image tag from 'prod' to 'latest'. --- .github/workflows/release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5ec937..4a91fd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,11 +17,6 @@ jobs: oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} tags: tag:ci - - name: Install registry CA certificate - run: | - sudo mkdir -p /etc/docker/certs.d/${{ secrets.REGISTRY_URL }} - echo "${{ secrets.REGISTRY_CA_CERT }}" | base64 -d | sudo tee /etc/docker/certs.d/${{ secrets.REGISTRY_URL }}/ca.crt - - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx @@ -38,4 +33,4 @@ jobs: uses: docker/build-push-action@v5 with: push: true - tags: ${{ secrets.REGISTRY_URL }}/beammp/website:${{ github.REF_NAME }}, ${{ secrets.REGISTRY_URL }}/beammp/website:prod + tags: ${{ secrets.REGISTRY_URL }}/beammp/website:${{ github.REF_NAME }}, ${{ secrets.REGISTRY_URL }}/beammp/website:latest