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 e731b1e commit 06558d0Copy full SHA for 06558d0
.github/workflows/bump-version.yml
@@ -51,5 +51,10 @@ jobs:
51
uses: ./.github/actions
52
- name: Bump version
53
run: |
54
- npx nx release --skip-publish --projects=${{ inputs.projects }} --dry-run=${{ inputs.dry-run }}
+ if [ "${{ inputs.beta-release }}" = "true" ]; then
55
+ npx nx release --skip-publish --projects=${{ inputs.projects }} --dry-run=${{ inputs.dry-run }} --preid=beta
56
+ else
57
+ npx nx release --skip-publish --projects=${{ inputs.projects }} --dry-run=${{ inputs.dry-run }}
58
+ fi
59
shell: bash
60
+
0 commit comments