Skip to content

chore: release 1.4.9 #29

chore: release 1.4.9

chore: release 1.4.9 #29

Workflow file for this run

name: Build obsidian plugin
on:
push:
tags:
- "*"
env:
PLUGIN_NAME: obsidian-fountain-editor
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: pnpm build
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="$tag" \
--generate-notes \
build/main.js build/manifest.json build/styles.css