Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/release_6.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
with:
ignore_install_scripts: true

- run: npm publish --provenance
- run: npm publish --provenance --tag alpha
if: ${{ needs.release_please.outputs.release_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
7 changes: 5 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
"release-type": "node",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false
"draft": false,
"prerelease-type": "alpha",
"prerelease": true,
"versioning": "prerelease"
Comment on lines +10 to +13
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prerelease-type: alpha specifies we want to use the alpha tag
prerelease: true specifies that the GH release should be marked as a prerelease
versioning: prerelease tells release please to release a prerelease

}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
}