Skip to content

update dependencies #31

update dependencies

update dependencies #31

Workflow file for this run

name: Release Obsidian plugin
on:
push:
tags:
- '*'
env:
PLUGIN_NAME: obsidian-teleprompter
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
id: build
run: |
npm install
npm run build
mkdir ${{ env.PLUGIN_NAME }}
cp dist/main.js dist/manifest.json dist/versions.json dist/styles.css ${{ env.PLUGIN_NAME }}
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
- name: Create release
id: 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 ${{ env.PLUGIN_NAME }}.zip