From 18296af96a6a0b4ecbc53a945e278c64383e3484 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 12 Jul 2023 07:36:15 -0400 Subject: [PATCH] remove workflow so that we can get the code merged --- .github/workflows/release.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 60102528c1..0000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Release - -on: - push: - branches: - - main - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - release: - name: Release - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/setup - - - name: "Show the Plan" - run: cat .release-plan.json - - - name: "Publish Dry Run" - run: node ./test-packages/release/src/cli.js publish --dry-run - env: - GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} - - - name: "Publish" - run: node ./test-packages/release/src/cli.js publish - env: - GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }}