Skip to content

open clipped document if already exists (#8) #14

open clipped document if already exists (#8)

open clipped document if already exists (#8) #14

Workflow file for this run

name: Release Obsidian Plugin
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build plugin
run: bun run build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${{ github.ref_name }}"
gh release create "$tag" \
--title="$tag" \
--draft \
main.js manifest.json styles.css