Skip to content

Commit

Permalink
Remove --dry-run
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Rak <[email protected]>
  • Loading branch information
rak-phillip committed Aug 26, 2024
1 parent 8b875ad commit 43f8d0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-rancher-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
run: |
echo "$GITHUB_REF_NAME"
if [[ $GITHUB_REF_NAME == components-v*alpha.* ]]; then
yarn publish:lib --tag alpha --dry-run
yarn publish:lib --tag alpha
elif [[ $GITHUB_REF_NAME == components-v*beta.* ]]; then
yarn publish:lib --tag beta --dry-run
yarn publish:lib --tag beta
else
yarn publish:lib --dry-run
yarn publish:lib
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 43f8d0b

Please sign in to comment.