Loader changes #136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Obsidian plugin | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- name: Enable Corepack | |
run: | | |
corepack enable | |
corepack prepare pnpm@latest-8 --activate | |
- name: Build plugin | |
run: | | |
pnpm install | |
pnpm run lint | |
pnpm run format:check | |
pnpm run test | |
pnpm run web:build | |
pnpm run build | |
- name: Create release | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} | |
run: | | |
tag="${GITHUB_REF#refs/tags/}" | |
gh release create "$tag" \ | |
--title="$tag" \ | |
--draft \ | |
main.js manifest.json styles.css |