Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,8 @@ jobs:
- name: Run Check-Dependencies
run: yarn check-dependencies

- name: Check if NODE_AUTH_TOKEN is present
run: |
if [ -z "$NODE_AUTH_TOKEN" ]; then
echo "NODE_AUTH_TOKEN is empty"
exit 1
else
echo "NODE_AUTH_TOKEN is set (but not printing it)"
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN}}
- name: Set Publish Auth
run: yarn config set npmAuthToken $NODE_AUTH_TOKEN

#Publish to npm
- name: Publish to npm
Expand Down
Loading