We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fcc945 commit 3082635Copy full SHA for 3082635
.github/workflows/trigger-release.yml
@@ -31,12 +31,8 @@ jobs:
31
run: |
32
git config --local user.email "github-actions[bot]@users.noreply.github.com"
33
git config --local user.name "github-actions[bot]"
34
- - name: 'Create release'
35
- if: ${{ !github.event.inputs.alpha }}
36
- run: yarn release
37
- - name: 'Create alpha release'
38
- if: ${{ github.event.inputs.alpha }}
39
- run: yarn release:alpha
+ - name: ${{ github.event.inputs.alpha == 'true' && 'Create alpha release' || 'Create release' }}
+ run: yarn ${{ github.event.inputs.alpha == 'true' && 'release:alpha' || 'release' }}
40
- name: 'Push release'
41
uses: ad-m/github-push-action@master
42
with:
0 commit comments