From 5a9e8f810acbafc6d7de52eeeafe43e092d215e2 Mon Sep 17 00:00:00 2001 From: Pat Sissons Date: Mon, 6 Jan 2025 13:57:00 -0800 Subject: [PATCH] tmp workflow for fixing release --- .github/workflows/fix-release.workflow.yml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/fix-release.workflow.yml diff --git a/.github/workflows/fix-release.workflow.yml b/.github/workflows/fix-release.workflow.yml new file mode 100644 index 0000000..59b0584 --- /dev/null +++ b/.github/workflows/fix-release.workflow.yml @@ -0,0 +1,23 @@ +name: Fix Release + +on: + pull_request: + branches: + - fix-release + +jobs: + manual-release: + name: "Manual Release" + runs-on: "ubuntu-latest" + environment: integration-sandbox + + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + uses: ./.github/actions/install-dependencies + with: + npm-token: ${{ secrets.NPM_TOKEN }} + - run: npm run build + - run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}