Merge pull request #10 from reply2za/development #3
Workflow file for this run
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: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build the plugin | |
run: npm run build | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
styles.css | |
manifest.json | |
dist/main.js |