@@ -49,11 +49,11 @@ jobs:
49
49
params :
50
50
name : Determine configuration
51
51
outputs :
52
- move-tags : ${{ github.event_name == 'workflow_dispatch' && inputs.move-tags || false }}
53
- publish-documentation : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-documentation || false }}
54
- publish-github-release : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-github-release || false }}
55
- publish-npm : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-npm || false }}
56
- publish-oci : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-oci || false }}
52
+ move-tags : ${{ github.event_name == 'workflow_dispatch' && inputs.move-tags || ' false' }}
53
+ publish-documentation : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-documentation || ' false' }}
54
+ publish-github-release : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-github-release || ' false' }}
55
+ publish-npm : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-npm || ' false' }}
56
+ publish-oci : ${{ github.event_name == 'workflow_dispatch' && inputs.publish-oci || ' false' }}
57
57
release-tag : ${{ github.event_name == 'workflow_dispatch' && inputs.release-tag || 'dev' }}
58
58
release-channel : dev
59
59
permissions :
91
91
run : |
92
92
echo "root-version=$(jq --raw-output '.version' package.json)" >> $GITHUB_OUTPUT
93
93
94
- - name : Generate Changelog
95
- id : changelog
94
+ - id : changelog
95
+ name : Generate Changelog
96
96
uses : oliversalzburg/action-automatic-semantic-releases@db96c81b334bf45a3e971b5d46ee6b63d523a472 # v0.5.6
97
97
with :
98
98
automatic-release-tag : ${{ needs.params.outputs.release-tag }}
@@ -163,14 +163,14 @@ jobs:
163
163
with :
164
164
name : changelog.json
165
165
166
- - if : success() && ${{ needs.params.outputs.publish-github-release }}
166
+ - if : success() && needs.params.outputs.publish-github-release == 'true'
167
167
name : Generate GitHub release
168
168
uses : oliversalzburg/action-automatic-semantic-releases@db96c81b334bf45a3e971b5d46ee6b63d523a472 # v0.5.6
169
169
with :
170
170
automatic-release-tag : ${{ needs.params.outputs.release-tag }}
171
171
changelog-artifact : changelog.json
172
172
draft : true
173
- dry-run : ${{ needs.params.outputs.move-tags == false }}
173
+ dry-run : ${{ needs.params.outputs.move-tags == ' false' }}
174
174
files : |
175
175
output/*
176
176
merge-similar : true
@@ -182,7 +182,7 @@ jobs:
182
182
update-release-info :
183
183
# The Release Info action uses GitHub releases as source of truth.
184
184
# If we didn't publish a release, there is no need to update the information.
185
- if : success() && needs.params.outputs.publish-github-release
185
+ if : success() && needs.params.outputs.publish-github-release == 'true'
186
186
name : 🔹 Update Release Info
187
187
needs :
188
188
- params
@@ -193,7 +193,7 @@ jobs:
193
193
uses : ./.github/workflows/release-info.yml
194
194
195
195
deploy-documentation :
196
- if : success() && needs.params.outputs.publish-documentation
196
+ if : success() && needs.params.outputs.publish-documentation == 'true'
197
197
name : 🔹 Deploy Documentation
198
198
needs :
199
199
- params
@@ -204,7 +204,7 @@ jobs:
204
204
uses : ./.github/workflows/documentation-deploy.yml
205
205
206
206
publish-devcontainer :
207
- if : success() && needs.params.outputs.publish-oci
207
+ if : success() && needs.params.outputs.publish-oci == 'true'
208
208
name : 🔹 Publish Devcontainer
209
209
needs :
210
210
- params
@@ -229,7 +229,7 @@ jobs:
229
229
push : true
230
230
231
231
publish-npm :
232
- if : success() && needs.params.outputs.publish-npm
232
+ if : success() && needs.params.outputs.publish-npm == 'true'
233
233
name : 🔹 Publish npm
234
234
needs :
235
235
- changelog
@@ -245,6 +245,5 @@ jobs:
245
245
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
246
246
uses : oliversalzburg/workflows/.github/workflows/frag-publish-npm.yml@main
247
247
with :
248
- is-canary : true
249
248
npm-dist-tag : ${{ needs.params.outputs.release-tag }}
250
249
version : ${{ needs.changelog.outputs.version }}
0 commit comments