Skip to content

Commit

Permalink
npm_publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MurkyTheMurloc authored Sep 10, 2023
1 parent fdaba90 commit d5f96aa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

name: Node.js Package

on:
push:
branches:
- main

jobs:

publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: |
npm install -g pnpm
pnpm install --frozen-lockfile
pnpm build
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit d5f96aa

Please sign in to comment.