From 48162e351ece66fa34cf74e544ea7fa26ece5461 Mon Sep 17 00:00:00 2001 From: nshen Date: Fri, 20 May 2022 12:09:31 +0800 Subject: [PATCH] v0.1.12 --- .github/workflows/publish-to-npm.yml | 21 +++++++++++++++++++++ package.json | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish-to-npm.yml diff --git a/.github/workflows/publish-to-npm.yml b/.github/workflows/publish-to-npm.yml new file mode 100644 index 0000000..6fd1aaf --- /dev/null +++ b/.github/workflows/publish-to-npm.yml @@ -0,0 +1,21 @@ +name: Publish to NPM +on: + release: + types: [created] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '16.x' + registry-url: 'https://registry.npmjs.org' + - name: Install dependencies and build + run: npm install && npm run build + - name: Publish package on NPM + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 9b25ef3..4a97a4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vite-plugin-wasm-pack", - "version": "0.1.11", + "version": "0.1.12", "description": "Vite plugin for rust using wasm-pack 🦀", "main": "dist/index.js", "module": "esm/index.js",