From 08bb98450f86159e8e406444e2a049e10ea602e2 Mon Sep 17 00:00:00 2001 From: yihau Date: Tue, 26 Apr 2022 17:49:05 +0800 Subject: [PATCH] chore(ci): remove unnecessary job --- web3.js/.github/workflows/cicd.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/web3.js/.github/workflows/cicd.yml b/web3.js/.github/workflows/cicd.yml index 2a29bb208e..928ca7d633 100644 --- a/web3.js/.github/workflows/cicd.yml +++ b/web3.js/.github/workflows/cicd.yml @@ -67,25 +67,3 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - gh-release: - needs: [build, semantic-release] - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Get Tag - id: get_tag - run: echo "::set-output name=tag::$(git tag --points-at HEAD)" - - name: Create Release - if: steps.get_tag.outputs.tag - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.get_tag.outputs.tag }} - release_name: ${{ steps.get_tag.outputs.tag }} - draft: false - prerelease: false