removed create tag from beta workflow

This commit is contained in:
ben 2021-12-23 23:58:12 +02:00
parent 5db7ce730e
commit be29c960cb

View file

@ -24,21 +24,4 @@ jobs:
- name: publish
run: npm run publish:beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
create-tag:
runs-on: ubuntu-latest
needs: publish-to-npm
steps:
- name: checkout
uses: actions/checkout@v2
# Push tag to GitHub if package.json version's tag is not tagged
- name: package-version
run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
- name: package-version-to-git-tag
uses: pkgdeps/git-tag-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_repo: ${{ github.repository }}
version: ${{ env.PACKAGE_VERSION }}
git_commit_sha: ${{ github.sha }}
git_tag_prefix: "v"
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}