From 9c4c36f47b8f7786b5e5833b53525b3c6481e7c9 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Sat, 21 Dec 2024 16:27:25 -0500 Subject: [PATCH] Remove unnessary file --- .github/workflows/npm-release.yml | 46 ------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/npm-release.yml diff --git a/.github/workflows/npm-release.yml b/.github/workflows/npm-release.yml deleted file mode 100644 index 74b7003c..00000000 --- a/.github/workflows/npm-release.yml +++ /dev/null @@ -1,46 +0,0 @@ -# This workflow will install Deno then run Deno lint and test. -# For more information see: https://github.com/denoland/setup-deno - -name: Release to NPM - -on: - push: - tags: - - "effection-v*" - -permissions: - contents: read - -jobs: - release: - runs-on: ubuntu-latest - - steps: - - name: checkout - uses: actions/checkout@v3 - - - name: setup deno - uses: denoland/setup-deno@v2 - with: - deno-version: v2.x - - - name: Get Version - id: vars - run: echo ::set-output name=version::$(echo ${{github.ref_name}} | sed 's/^effection-v//') - - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: 14.x - registry-url: https://registry.npmjs.com - - - name: Build - run: deno task build:npm $NPM_VERSION - env: - NPM_VERSION: ${{steps.vars.outputs.version}} - - - name: Publish - run: npm publish --access=public --tag=next - working-directory: ./build/npm - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}