diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml deleted file mode 100644 index ba6fe70..0000000 --- a/.github/workflows/create-release.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Release - -on: - push: - tags: - - releases/* -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [20.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm install - - run: npm test - env: - CI: true - - run: npm run pkg - - name: Create Release - id: create_release - uses: ncipollo/release-action@v1 - with: - artifacts: "dist/**/*.tar.gz" - token: ${{ secrets.GITHUB_TOKEN }}