From b1ba009b1ca0e1c4696a5ec73ad824cc7865b9ec Mon Sep 17 00:00:00 2001 From: slatejack <1815846446@qq.com> Date: Mon, 29 Jan 2024 17:04:16 +0800 Subject: [PATCH] fix: remove push-github.yml --- .github/workflows/push-github.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/push-github.yml 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 }}