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 f0b1670 commit 919491cCopy full SHA for 919491c
.github/actions/create-release/action.yaml
@@ -27,13 +27,16 @@ runs:
27
with:
28
node-version: ${{ inputs.node_version }}
29
30
- - name: install app dependencies
+ - name: install npm dependencies
31
run: npm install
32
+ shell: bash
33
- - run: npx semantic-release --dry-run
34
+ - name: get next version (dry run)
35
id: get-next-version
36
+ run: npx semantic-release --dry-run
37
env:
38
GITHUB_TOKEN: ${{ inputs.github_token }}
39
40
41
- name: create release - beta
42
if: ${{ github.ref_name == "main" && inputs.production_release != "true" }}
0 commit comments