-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1023 Bytes
/
publish.yml
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
36
37
38
39
# Simple workflow for deploying static content to GitHub Pages
name: Publish to npm
on:
release:
published:
permissions:
contents: read
pages: write
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2.0.0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install deps
run: bun i
- name: Build
run: bun run build:lib
- name: Update version in package.json
run: |
VERSION=${{ github.event.release.tag_name }}
echo "Updating package.json version to $VERSION"
npm version --no-git-tag-version $VERSION
- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET }}