-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 887 Bytes
/
publish-npm.yml
File metadata and controls
35 lines (28 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This workflow is triggered when a GitHub release is created.
# It can also be run manually to re-publish to NPM in case it failed for some reason.
# You can run this workflow by navigating to https://www.github.com/superwall/superwall-sdk-typescript/actions/workflows/publish-npm.yml
name: Publish NPM
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
name: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Set up pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: |
pnpm install
- name: Publish to NPM
run: |
bash ./bin/publish-npm
env:
NPM_TOKEN: ${{ secrets.SUPERWALL_API_NPM_TOKEN || secrets.NPM_TOKEN }}