Skip to content

Commit 2d4aa5a

Browse files
committed
add release workflow
1 parent 52eea3d commit 2d4aa5a

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Create zip
17+
run: zip -r liascript-skill.zip liascript-skill/
18+
19+
- name: Create GitHub release
20+
uses: softprops/action-gh-release@v2
21+
with:
22+
files: liascript-skill.zip
23+
generate_release_notes: true

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,4 @@ Describe your topic and audience, and the AI assistant will generate a complete
5858
- [LiaScript docs](https://github.com/LiaScript/docs)
5959
- [LiaScript LiveEditor](https://liascript.github.io/LiveEditor/)
6060
- [Template library](https://github.com/liaTemplates)
61+
- [Claude skills documentation](https://code.claude.com/docs/en/skills)

0 commit comments

Comments
 (0)