diff --git a/.github/workflows/push-github.yml b/.github/workflows/push-github.yml deleted file mode 100644 index f0bf32f..0000000 --- a/.github/workflows/push-github.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Publish package to GitHub Packages -on: - push: - branches: [ "master" ] -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - uses: actions/checkout@v4 - # Setup .npmrc file to publish to GitHub Packages - - uses: actions/setup-node@v3 - with: - node-version: '14.x' - registry-url: 'https://npm.pkg.github.com' - - run: npm ci - - run: npm run build - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}