We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2342f commit 0063d96Copy full SHA for 0063d96
2 files changed
.github/actions/github/create-release/action.yml
@@ -8,7 +8,6 @@ inputs:
8
is-preview:
9
description: 'Is this a preview release?'
10
required: true
11
- default: 'false'
12
13
runs:
14
using: composite
@@ -19,7 +18,7 @@ runs:
19
18
echo "release-version=${{ inputs.release-version }}"
20
echo "is-preview=${{ inputs.is-preview }}"
21
echo "preview-argument=${{ inputs.is-preview == 'true' && '--prerelease' || '' }}"
22
- shell: bach
+ shell: bash
23
- name: 'Create GitHub release PolylineAlgorithm ${{ env.release-version }}'
24
shell: bash
25
env:
.github/workflows/release.yml
@@ -247,3 +247,4 @@ jobs:
247
uses: ./.github/actions/github/create-release
248
with:
249
release-version: ${{ env.release-version }}
250
+ is-preview: ${{ needs.workflow-variables.outputs.is-preview }}
0 commit comments