1
Fork 0
mirror of https://github.com/Steffo99/obsidian-file-index.git synced 2024-11-22 05:04:17 +00:00
obsidian-file-index/.github/workflows/release.yml

39 lines
889 B
YAML
Raw Normal View History

name: Release Obsidian plugin
on:
push:
tags:
- "*"
2023-11-06 14:06:48 +00:00
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Build plugin
run: |
npm install
npm run build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2023-11-06 14:03:34 +00:00
GITHUB_REF: ${{ github.ref_name }}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="$tag" \
--draft \
main.js manifest.json styles.css