From b9e0e6439053816b8e46fba45e9372072ed13e19 Mon Sep 17 00:00:00 2001 From: Luis R Date: Fri, 30 Apr 2021 14:29:01 +0200 Subject: [PATCH] Create Github Action for publishing to npm --- .github/workflows/npm.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/npm.yml diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml new file mode 100644 index 0000000..a8f9c11 --- /dev/null +++ b/.github/workflows/npm.yml @@ -0,0 +1,18 @@ +name: npm +on: + release: + types: [created] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + # Setup .npmrc file to publish to npm + - uses: actions/setup-node@v2 + with: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}