Skip to content

Commit 06558d0

Browse files
committed
ci: try use beta params
1 parent e731b1e commit 06558d0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/bump-version.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,10 @@ jobs:
5151
uses: ./.github/actions
5252
- name: Bump version
5353
run: |
54-
npx nx release --skip-publish --projects=${{ inputs.projects }} --dry-run=${{ inputs.dry-run }}
54+
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
5559
shell: bash
60+

0 commit comments

Comments
 (0)