Skip to content

Loader changes

Loader changes #145

Workflow file for this run

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