Bold, Cursive option for folder notes #17
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
# https://github.com/SilentVoid13/Templater/blob/master/.github/workflows/release.yml | |
name: Plugin release | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: npm build | |
run: | | |
npm install | |
npm run build --if-present | |
- name: Plugin release | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: "main.js,manifest.json,styles.css" | |
token: ${{ secrets.GITHUB_TOKEN }} |