diff --git a/.github/workflows/release-github.yml b/.github/workflows/release-github.yml index b4b2d3e1f..d45105ffa 100644 --- a/.github/workflows/release-github.yml +++ b/.github/workflows/release-github.yml @@ -48,12 +48,12 @@ jobs: - name: Set feature branch tags if: github.ref_name != 'main' && github.ref_name != 'next' && github.event_name != 'pull_request' run: | - echo 'NPM_DIST_TAG=""' >> $GITHUB_ENV + echo 'NPM_DIST_TAG="--tag test"' >> $GITHUB_ENV echo "FEATURE_BRANCH=${{ github.ref_name }}" >> $GITHUB_ENV - name: Set PR tags if: github.ref_name != 'main' && github.ref_name != 'next' && github.event_name == 'pull_request' run: | - echo 'NPM_DIST_TAG=""' >> $GITHUB_ENV + echo 'NPM_DIST_TAG="--tag test"' >> $GITHUB_ENV echo "DOCS_TAG=$(node ./src/js/version.mjs branch-to-prerelease ${{ github.head_ref }})" >> $GITHUB_ENV echo "FEATURE_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV - name: Release mono-artifact to GitHub