diff --git a/.github/workflows/release-preview-publish.yml b/.github/workflows/release-preview-publish.yml index 931dce76c..552452e80 100644 --- a/.github/workflows/release-preview-publish.yml +++ b/.github/workflows/release-preview-publish.yml @@ -1,10 +1,9 @@ name: Publish release preview package -on: push -#on: -# push: -# branches: -# - 'release/**' +on: + push: + branches: + - 'release/**' jobs: publish: @@ -29,9 +28,8 @@ jobs: - name: Publish run: | - # VERSION=$(echo ${{github.ref}} | tail -c +20)-preview.$PREVIEW_VERSION PREVIEW_VERSION=$(git rev-list --count --first-parent HEAD) - VERSION=8.4.0-preview.$PREVIEW_VERSION + VERSION=$(echo ${{github.ref}} | tail -c +20)-preview.$PREVIEW_VERSION echo $VERSION npm version --no-git-tag-version --allow-same-version $VERSION npm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}