reconcile/.github/workflows/publish-plugin.yml

46 lines
884 B
YAML

name: Release Obsidian plugin
on:
push:
tags:
- "*"
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: |
cd plugin
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