Skip to content

Commit

Permalink
build: avoid creating git tags while publish
Browse files Browse the repository at this point in the history
  • Loading branch information
iwt-matthiasrohmer committed Mar 16, 2021
1 parent 29c6b7b commit 59dbb45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
yarn build:sqs
yarn build:dynamodb
- run: |
yarn publish:cli --access=public --new-version=${{ github.event.release.tag_name }}
yarn publish:sqs --access=public --new-version=${{ github.event.release.tag_name }}
yarn publish:dynamodb --access=public --new-version=${{ github.event.release.tag_name }}
yarn publish:cli --access=public --new-version=${{ github.event.release.tag_name }} --no-git-tag-version
yarn publish:sqs --access=public --new-version=${{ github.event.release.tag_name }} --no-git-tag-version
yarn publish:dynamodb --access=public --new-version=${{ github.event.release.tag_name }} --no-git-tag-version
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit 59dbb45

Please sign in to comment.