From 922f87d543736aa02a059cc3ae4fb00fd07a8a05 Mon Sep 17 00:00:00 2001 From: Chris Ward Date: Mon, 12 Feb 2024 11:28:11 -0800 Subject: [PATCH] fix(deploy): Fix Semantic release deployment (#582) --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 931fee77..01b793c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: push: branches: [main] tags: - - 'v*' + - "v*" pull_request: branches: [main] @@ -71,7 +71,7 @@ jobs: id: semantic uses: cycjimmy/semantic-release-action@v4 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} container-release: name: Container Release @@ -99,8 +99,7 @@ jobs: context: . push: ${{ github.event_name != 'pull_request' }} tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.github-release.outputs.version }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest - labels: - version=${{ needs.github-release.outputs.version }} + labels: version=${{ needs.github-release.outputs.version }} trigger_downstream: name: Trigger downstream