generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 1.11 KB
/
release.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
name: Release Obsidian plugin
on:
workflow_run: # only release if CI passes
workflows:
- "CI"
types:
- completed
push:
tags:
- "*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Build plugin
run: |
bun install
bun run build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
notes_file="release-notes.md"
notes_option=""
if [ -f "$notes_file" ]; then
notes_option="--notes-file=$notes_file"
fi
gh release create "$tag" \
--title="$tag" \
$notes_option \
main.js manifest.json styles.css