Skip to content

Commit

Permalink
Add publish workflow (#740)
Browse files Browse the repository at this point in the history
* Add publish workflow

* Fix name
  • Loading branch information
AndyBitz committed Nov 7, 2022
1 parent 161b807 commit 30842d4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yaml
@@ -0,0 +1,34 @@
name: Publish Package

on:
workflow_dispatch:
release:
types: [published]

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup PNPM 7
uses: pnpm/action-setup@v2.0.1
with:
version: latest
- name: Setup Node 18
uses: actions/setup-node@v2
with:
node-version: 18
registry-url: 'https://registry.npmjs.org/'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Compile
run: pnpm compile
- name: Run all tests
run: pnpm test
- name: Publish
run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}

0 comments on commit 30842d4

Please sign in to comment.