diff --git a/.github/workflows/publish-rc.yml b/.github/workflows/publish-rc.yml new file mode 100644 index 0000000..b088e92 --- /dev/null +++ b/.github/workflows/publish-rc.yml @@ -0,0 +1,22 @@ +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 }}