Skip to content

Commit

Permalink
chore(CI): Fix incorrect check for env var on release
Browse files Browse the repository at this point in the history
  • Loading branch information
orangejulius committed Jun 2, 2021
1 parent 6e5ce2d commit f9426f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
GH_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: >
if [[ -n "$GH_SEMANTIC_RELEASE_TOKEN" && -n "$NPM_TOKEN" ]]; then
if [[ -n "$GH_TOKEN" && -n "$NPM_TOKEN" ]]; then
curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash -
fi

0 comments on commit f9426f0

Please sign in to comment.