Skip to content

Commit

Permalink
fix(deploy): Fix Semantic release deployment (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
bagelbits authored Feb 12, 2024
1 parent c3407cd commit 922f87d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: [main]
tags:
- 'v*'
- "v*"
pull_request:
branches: [main]

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 922f87d

Please sign in to comment.