-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (49 loc) · 1.68 KB
/
Copy pathrelease.yml
File metadata and controls
61 lines (49 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get version from tag
id: version
run: |
TAG=${GITHUB_REF#refs/tags/}
echo "tag=$TAG" >> $GITHUB_OUTPUT
echo "version=${TAG#v}" >> $GITHUB_OUTPUT
- name: Create agents zip
run: |
zip -r kai-${{ steps.version.outputs.tag }}.zip agents
# Verify zip contents
echo "Contents of kai-${{ steps.version.outputs.tag }}.zip:"
unzip -l kai-${{ steps.version.outputs.tag }}.zip
- name: Create gemini zip
run: |
zip -r kai-gemini-${{ steps.version.outputs.tag }}.zip gemini
# Verify zip contents
echo "Contents of kai-gemini-${{ steps.version.outputs.tag }}.zip:"
unzip -l kai-gemini-${{ steps.version.outputs.tag }}.zip
- name: Create claude zip
run: |
zip -r kai-claude-${{ steps.version.outputs.tag }}.zip claude
# Verify zip contents
echo "Contents of kai-claude-${{ steps.version.outputs.tag }}.zip:"
unzip -l kai-claude-${{ steps.version.outputs.tag }}.zip
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
kai-${{ steps.version.outputs.tag }}.zip
kai-gemini-${{ steps.version.outputs.tag }}.zip
kai-claude-${{ steps.version.outputs.tag }}.zip
generate_release_notes: true
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}