2023-10-28 17:40:17 +00:00
|
|
|
name: Release Obsidian plugin
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2023-10-28 18:21:31 +00:00
|
|
|
- "*"
|
2023-10-28 17:40:17 +00:00
|
|
|
|
2023-11-06 14:06:48 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2023-10-28 17:40:17 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: "18.x"
|
|
|
|
|
|
|
|
- name: Build plugin
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
- name: Create release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-11-06 14:03:34 +00:00
|
|
|
GITHUB_REF: ${{ github.ref_name }}
|
2023-10-28 17:40:17 +00:00
|
|
|
run: |
|
|
|
|
tag="${GITHUB_REF#refs/tags/}"
|
|
|
|
|
|
|
|
gh release create "$tag" \
|
|
|
|
--title="$tag" \
|
|
|
|
--draft \
|
|
|
|
main.js manifest.json styles.css
|