Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Aug 1, 2023
1 parent 7b8cb1d commit 320540f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
name: Publish Package to npmjs
on:
push:
tags: '*'
branches: [main]
jobs:
"npm-publish":
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: git pull --tags
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npx tsc
- run: npm --no-git-tag-version version from-git
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 320540f

Please sign in to comment.