-
-
Notifications
You must be signed in to change notification settings - Fork 16
58 lines (51 loc) · 1.83 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Publish
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Create Build
id: build
run: |
bun install --frozen-lockfile
bun run build
- name: Create NPM Release
if: ${{ !contains(github.ref_name, 'beta') }}
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Beta NPM Release
if: ${{ contains(github.ref_name, 'beta') }}
run: npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Archive
run: |
mkdir build
cp -r dist build
cp README.md LICENSE CHANGELOG.md package.json build
cd build
zip -r obsidian-typings-${{ github.ref_name }}.zip .
cd ..
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: |
build/obsidian-typings-${{ github.ref_name }}.zip
dist/obsidian-typings.api.json
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: ${{ contains(github.ref_name, 'beta') }}