mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Create beta-release.yaml
This commit is contained in:
parent
3c77bee0f5
commit
b2544f4750
1 changed files with 21 additions and 0 deletions
21
.github/workflows/beta-release.yaml
vendored
Normal file
21
.github/workflows/beta-release.yaml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# https://github.com/SilentVoid13/Templater/blob/master/.github/workflows/release.yml
|
||||
name: Plugin beta release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "[0-9]+.[0-9]+.[0-9]+"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: npm build
|
||||
run: |
|
||||
npm install
|
||||
npm run build --if-present
|
||||
- name: Plugin beta release
|
||||
uses: ncipollo/release-action@v1.12.0
|
||||
with:
|
||||
artifacts: "main.js,manifest-beta.json,styles.css"
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Reference in a new issue