Skip to content

Commit

Permalink
Merge pull request #15 from linonetwo/patch-1
Browse files Browse the repository at this point in the history
Create release.yml by @linonetwo
  • Loading branch information
BurningTreeC authored Mar 17, 2024
2 parents 0d061f7 + 5a4c242 commit 525fb0a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish my plugin

on:
push:
tags:
- "v*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: tiddly-gittly/[email protected]
with:
source: "TiddlyFlex"
output: "output"
- name: Upload to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: output/*.json
tag: ${{ env.RELEASE_VERSION }}
overwrite: true
file_glob: true

0 comments on commit 525fb0a

Please sign in to comment.