Skip to content

First key pressed now triggers the search allowing you to just start … #24

First key pressed now triggers the search allowing you to just start …

First key pressed now triggers the search allowing you to just start … #24

Workflow file for this run

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)"