File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,21 +33,21 @@ jobs:
33
33
34
34
- name : run chart-releaser
35
35
id : cr
36
- if : ${{ steps.version.outputs.should_release }}
36
+ if : ${{ steps.version.outputs.should_release == 'true' }}
37
37
uses : helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
38
38
env :
39
39
CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
40
40
CR_GENERATE_RELEASE_NOTES : true
41
41
CR_SKIP_EXISTING : true
42
42
43
43
- name : Login to GitHub Container Registry
44
- if : ${{ steps.version.outputs.should_release }}
44
+ if : ${{ steps.version.outputs.should_release == 'true' }}
45
45
uses : docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
46
46
with :
47
47
registry : ghcr.io
48
48
username : ${{ github.repository_owner }}
49
49
password : ${{ secrets.GITHUB_TOKEN }}
50
50
51
- - if : ${{ steps.version.outputs.should_release }}
51
+ - if : ${{ steps.version.outputs.should_release == 'true' }}
52
52
name : Push Chart
53
53
run : helm push .cr-release-packages/immich-*.tgz oci://ghcr.io/${{ github.repository }}
You can’t perform that action at this time.
0 commit comments