From 99622f9756306f406486ce6b2770aeca164a9e32 Mon Sep 17 00:00:00 2001 From: Hoseong Lee Date: Tue, 14 Apr 2026 16:09:24 -0500 Subject: [PATCH] Added a new yml file to publish an alpha version --- .github/workflows/publich.npm.alpha.yml | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/publich.npm.alpha.yml diff --git a/.github/workflows/publich.npm.alpha.yml b/.github/workflows/publich.npm.alpha.yml new file mode 100644 index 0000000..39d3aeb --- /dev/null +++ b/.github/workflows/publich.npm.alpha.yml @@ -0,0 +1,32 @@ +name: Publish to NPM (alpha) +on: + workflow_dispatch: + +permissions: + contents: read + id-token: write + +jobs: + publish-npm: + environment: prod + runs-on: ubuntu-latest + + defaults: + run: + working-directory: ./keeperapi + + steps: + - name: Get the source code + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '24' + registry-url: 'https://registry.npmjs.org' + + - name: Install dependencies + run: npm install + + - name: Publish package + run: npm publish --tag alpha