We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e697949 commit d8917c0Copy full SHA for d8917c0
1 file changed
.github/workflows/npm-publish.yml
@@ -57,8 +57,9 @@ jobs:
57
- run: bun run nail-workspace-dependency-versions
58
59
- run: |
60
- VERSION=$(npm version ${{ github.event.inputs.release_type }} -m "%s ${{ github.event.inputs.description }}" | tr -d '\n')
61
- echo "versionTag=${VERSION}" >> $GITHUB_ENV
+ npm version ${{ github.event.inputs.release_type }} -m "%s ${{ github.event.inputs.description }}"
+ VERSION=$(node -p "require('./package.json').version")
62
+ echo "versionTag=v${VERSION}" >> $GITHUB_ENV
63
working-directory: packages/react-native-device-activity
64
65
- name: Setup NPM Authentication
0 commit comments