From 6361b109c7a838572c1743548ce49e81d2a401e3 Mon Sep 17 00:00:00 2001 From: David Moore Date: Wed, 18 Dec 2024 15:43:54 +1100 Subject: [PATCH] remove redundant workflow --- .github/workflows/publish-rc.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/publish-rc.yml diff --git a/.github/workflows/publish-rc.yml b/.github/workflows/publish-rc.yml deleted file mode 100644 index b088e92..0000000 --- a/.github/workflows/publish-rc.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Publish RC - -on: - workflow_dispatch: - inputs: - tag_name: - description: 'The tag name to use' - required: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Install deps and package - run: npm ci && npm run package - - uses: JasonEtco/build-and-tag-action@v2 - with: - tag_name: ${{ github.event.inputs.tag_name }} - env: - GITHUB_TOKEN: ${{ github.token }}