52 lines
997 B
YAML
52 lines
997 B
YAML
name: Release Obsidian plugin
|
|
|
|
# on:
|
|
# push:
|
|
# tags:
|
|
# - "*"
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
pull_request:
|
|
branches: ["master"]
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build-plugin:
|
|
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 wasm
|
|
run: |
|
|
cd backend
|
|
cargo install wasm-pack
|
|
wasm-pack build --target web sync_lib --features wee_alloc
|
|
|
|
- name: Build plugin
|
|
run: |
|
|
pwd
|
|
cd plugin
|
|
pwd
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Create release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
tag="${GITHUB_REF#refs/tags/}"
|
|
|
|
cd plugin/build
|
|
|
|
gh release create "$tag" \
|
|
--title="$tag" \
|
|
--draft \
|
|
main.js manifest.json styles.css
|