File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release Obsidian Plugin
2+
3+ on :
4+ push :
5+ tags :
6+ - " *"
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@v4
14+
15+ - name : Use Node.js
16+ uses : actions/setup-node@v4
17+ with :
18+ node-version : " 18.x"
19+
20+ - name : Install dependencies
21+ run : npm install
22+
23+ - name : Build plugin
24+ run : npm run build
25+
26+ - name : Create release
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29+ run : |
30+ tag="${{ github.ref_name }}"
31+ gh release create "$tag" \
32+ --title="$tag" \
33+ --draft \
34+ main.js manifest.json styles.css
Original file line number Diff line number Diff line change 11{
22 "id" : " atmark" ,
33 "name" : " ATmark" ,
4- "version" : " 1.0 .0" ,
4+ "version" : " 0.1 .0" ,
55 "minAppVersion" : " 0.15.0" ,
66 "description" : " Obsidian plugin for AT Protocol bookmark platforms" ,
77 "author" : " treethought" ,
You can’t perform that action at this time.
0 commit comments