Skip to content

Commit 2b1b134

Browse files
authored
fix: explicit == true check (#199)
1 parent 5230fa4 commit 2b1b134

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ jobs:
3333
3434
- name: run chart-releaser
3535
id: cr
36-
if: ${{ steps.version.outputs.should_release }}
36+
if: ${{ steps.version.outputs.should_release == 'true' }}
3737
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
3838
env:
3939
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4040
CR_GENERATE_RELEASE_NOTES: true
4141
CR_SKIP_EXISTING: true
4242

4343
- name: Login to GitHub Container Registry
44-
if: ${{ steps.version.outputs.should_release }}
44+
if: ${{ steps.version.outputs.should_release == 'true' }}
4545
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
4646
with:
4747
registry: ghcr.io
4848
username: ${{ github.repository_owner }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
5050

51-
- if: ${{ steps.version.outputs.should_release }}
51+
- if: ${{ steps.version.outputs.should_release == 'true' }}
5252
name: Push Chart
5353
run: helm push .cr-release-packages/immich-*.tgz oci://ghcr.io/${{ github.repository }}

0 commit comments

Comments
 (0)