Skip to content

Commit

Permalink
Add gh action for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
moz-gh committed Sep 6, 2024
1 parent e58265a commit be399e5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish to npm

on:
push:
tags:
- "v*.*.*" # Matches v1.0.0, v2.0.0, etc.

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org/"
cache: "npm"

- name: Install dependencies
run: npm install
- run: npm test
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit be399e5

Please sign in to comment.