diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..82ebd88 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,27 @@ +name: Publish + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: "Setup Node.js" + uses: actions/setup-node@v2 + with: + node-version: "14.x" + registry-url: "https://registry.npmjs.org" + + - name: "Checkout" + uses: actions/checkout@v2 + + - name: Install dependencies + run: npm install + + - name: Compile + run: npm run build + + - name: "Publish package" + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}