Skip to content

Commit

Permalink
fix: use "next" take for alpha/beta versions (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
steabert authored Jan 12, 2025
1 parent a403a88 commit 81baf84
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
if [[ "${{ steps.vars.output.version }}" =~ alpha|beta ]]; then
if [[ "${{ steps.vars.outputs.version }}" =~ alpha|beta ]]; then
yarn npm publish --tag next
else
yarn npm publish --tag latest
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 14.0.0-beta.1

- Fixed next/latest tag selection in publish workflow.

## 14.0.0-beta.0

- Switched to workflow-based releases with version as part of source.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "media-stream-library",
"version": "14.0.0-beta.0",
"version": "14.0.0-beta.1",
"description": "Media libraries for Node and the Web.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 81baf84

Please sign in to comment.