Skip to content

Commit

Permalink
chore(ops): Only tag alpha once (#2535)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidarain1 authored Feb 20, 2025
1 parent ccf008f commit 075307e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.TS_IMMUTABLE_SDK_NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm nx release publish $( ${{ env.DRY_RUN }} && echo "--dry-run" || echo "") $( ${{ github.event_name == 'push' }} && echo "--tag alpha" || ${{ startsWith(env.RELEASE_TYPE, 'pre') }} && echo "--tag alpha" || echo "")
run: pnpm nx release publish $( ${{ env.DRY_RUN }} && echo "--dry-run" || echo "") $( ${{ github.event_name == 'push' || startsWith(env.RELEASE_TYPE, 'pre') }} && echo "--tag alpha" || echo "")

- name: Warm up CDN
id: warm_up_cdn
Expand Down

0 comments on commit 075307e

Please sign in to comment.