Skip to content

Temporarily remove workflow for history cleanup push #3

Temporarily remove workflow for history cleanup push

Temporarily remove workflow for history cleanup push #3

Workflow file for this run

name: Release Obsidian plugin
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Bun.js
uses: oven-sh/setup-bun@v1
- name: Build plugin
run: |
bun install
bun run build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="$tag" \
--draft \
dist/main.js \
dist/manifest.json \
dist/styles.css