First key pressed now triggers the search allowing you to just start … #23
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: Build Pull Request | |
on: pull_request | |
env: | |
PLUGIN_NAME: obsidian-beautitab | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "20.x" | |
- name: Build | |
id: build | |
run: | | |
npm ci | |
npm run build | |
zip -r ${{ env.PLUGIN_NAME }}.zip dist | |
ls | |
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)" |