From 8017089f0e9b98b583f687e7abb050e13b1d6961 Mon Sep 17 00:00:00 2001 From: Ryan Cooley Date: Sun, 28 Apr 2024 16:14:50 -0700 Subject: [PATCH] Add workflow to publish package to NPM --- .github/workflows/update.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/update.yml diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..29e3730 --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,30 @@ +name: Publish Package + +on: + push: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 'lts' + registry-url: 'https://registry.npmjs.org' + + - name: Install dependencies + run: npm ci + + - name: Bump package version + run: npm version patch + + - name: Publish to npm + run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}