diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13e3eaa87..38d4c2750 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,11 +9,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 - - name: Install - run: npm i - - name: Update version - run: echo ${{ github.ref }} | cut -c 11- | xargs npm version --no-git-tag-version + - name: Update v1 tag + run: git tag -f v1 - name: Push changes - uses: ad-m/github-push-action@master + uses: ad-m/github-push-action@v0.5.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} + tags: true + force: true