diff --git a/.github/workflow/npm.yml b/.github/workflow/npm.yml deleted file mode 100644 index 727dfca..0000000 --- a/.github/workflow/npm.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Publish to NPM -on: - release: - types: [created] -jobs: - Publish-NPM: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' - scope: '@fiusdevelopment' - - name: Install dependencies 🔧 - run: npm ci - - name: Publish package on NPM 📦 - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - REGISTRY1: 'registry.npmjs.org' - REGISTRY2: 'registry=https://registry.npmjs.org/' - - Publish-GitHub-NPM: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: '16.x' - registry-url: 'https://npm.pkg.github.com' - scope: '@fiusdevelopment' - - name: Install dependencies 🔧 - run: npm ci - - name: Publish package on NPM 📦 - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.GP_TOKEN }} - REGISTRY1: 'npm.pkg.github.com' - REGISTRY2: '@fiusdevelopment:registry=https://npm.pkg.github.com' \ No newline at end of file