From a6d8cdcf4afa6134338a9ca8f9f7020831ad7175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Olszewski?= Date: Wed, 12 May 2021 02:56:44 +0200 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e97c282 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Publish to NPM + +on: + release: + types: [created] + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '14' + registry-url: 'https://registry.npmjs.org' + - run: npm ci + - run: npm run build --if-present + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}