Skip to content

Commit 8429609

Browse files
ci: Fix run condition for GitHub release
1 parent baaddd2 commit 8429609

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

.github/workflows/pre-release.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
params:
5050
name: Determine configuration
5151
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' }}
5757
release-tag: ${{ github.event_name == 'workflow_dispatch' && inputs.release-tag || 'dev' }}
5858
release-channel: dev
5959
permissions:
@@ -91,8 +91,8 @@ jobs:
9191
run: |
9292
echo "root-version=$(jq --raw-output '.version' package.json)" >> $GITHUB_OUTPUT
9393
94-
- name: Generate Changelog
95-
id: changelog
94+
- id: changelog
95+
name: Generate Changelog
9696
uses: oliversalzburg/action-automatic-semantic-releases@db96c81b334bf45a3e971b5d46ee6b63d523a472 # v0.5.6
9797
with:
9898
automatic-release-tag: ${{ needs.params.outputs.release-tag }}
@@ -163,14 +163,14 @@ jobs:
163163
with:
164164
name: changelog.json
165165

166-
- if: success() && ${{ needs.params.outputs.publish-github-release }}
166+
- if: success() && needs.params.outputs.publish-github-release == 'true'
167167
name: Generate GitHub release
168168
uses: oliversalzburg/action-automatic-semantic-releases@db96c81b334bf45a3e971b5d46ee6b63d523a472 # v0.5.6
169169
with:
170170
automatic-release-tag: ${{ needs.params.outputs.release-tag }}
171171
changelog-artifact: changelog.json
172172
draft: true
173-
dry-run: ${{ needs.params.outputs.move-tags == false }}
173+
dry-run: ${{ needs.params.outputs.move-tags == 'false' }}
174174
files: |
175175
output/*
176176
merge-similar: true
@@ -182,7 +182,7 @@ jobs:
182182
update-release-info:
183183
# The Release Info action uses GitHub releases as source of truth.
184184
# 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'
186186
name: 🔹 Update Release Info
187187
needs:
188188
- params
@@ -193,7 +193,7 @@ jobs:
193193
uses: ./.github/workflows/release-info.yml
194194

195195
deploy-documentation:
196-
if: success() && needs.params.outputs.publish-documentation
196+
if: success() && needs.params.outputs.publish-documentation == 'true'
197197
name: 🔹 Deploy Documentation
198198
needs:
199199
- params
@@ -204,7 +204,7 @@ jobs:
204204
uses: ./.github/workflows/documentation-deploy.yml
205205

206206
publish-devcontainer:
207-
if: success() && needs.params.outputs.publish-oci
207+
if: success() && needs.params.outputs.publish-oci == 'true'
208208
name: 🔹 Publish Devcontainer
209209
needs:
210210
- params
@@ -229,7 +229,7 @@ jobs:
229229
push: true
230230

231231
publish-npm:
232-
if: success() && needs.params.outputs.publish-npm
232+
if: success() && needs.params.outputs.publish-npm == 'true'
233233
name: 🔹 Publish npm
234234
needs:
235235
- changelog
@@ -245,6 +245,5 @@ jobs:
245245
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
246246
uses: oliversalzburg/workflows/.github/workflows/frag-publish-npm.yml@main
247247
with:
248-
is-canary: true
249248
npm-dist-tag: ${{ needs.params.outputs.release-tag }}
250249
version: ${{ needs.changelog.outputs.version }}

0 commit comments

Comments
 (0)