diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d40234811..321461ae6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 58d6e5d56..6608654c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/package.json b/package.json index ed3a0b9cc..6a0cd1502 100644 --- a/package.json +++ b/package.json @@ -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",