From 1bfdcac638faf0d47c8c7358931f07ebbc503383 Mon Sep 17 00:00:00 2001 From: Mateus Abelli Date: Tue, 28 Mar 2023 20:16:06 -0300 Subject: [PATCH 1/2] Remove unused workflow --- .../workflows/npm-publish-github-packages.yml | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/npm-publish-github-packages.yml diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml deleted file mode 100644 index 0c602e5..0000000 --- a/.github/workflows/npm-publish-github-packages.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created -# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages - -name: GitHub Package - -on: - release: - types: [created] - -jobs: - publish-gpr: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - registry-url: https://npm.pkg.github.com/ - - - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 - with: - version: 7.30.0 - run_install: false - - run: pnpm install - - - run: npm config set registry https://npm.pkg.github.com/ - - - name: Publish package - run: npm publish - working-directory: ./packages/server/ - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file From f8c2cbd83a52ac0d61dc6de1bd166bb4e1de87f2 Mon Sep 17 00:00:00 2001 From: Mateus Abelli Date: Tue, 28 Mar 2023 20:20:10 -0300 Subject: [PATCH 2/2] Rename publish workflow --- .github/workflows/{npm-publish.yml => publish.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{npm-publish.yml => publish.yml} (100%) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/publish.yml similarity index 100% rename from .github/workflows/npm-publish.yml rename to .github/workflows/publish.yml