-
Notifications
You must be signed in to change notification settings - Fork 23
52 lines (46 loc) · 1.23 KB
/
release.yaml
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
name: Create ui-kit release artifact
on:
push:
branches:
- main
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: ui/package-lock.json
- name: Build project
id: build
env:
"NEXT_PUBLIC_DEV": "false"
run: |
mkdir -p releases/
cur_dir="$(pwd)"
cd ui/
npm ci
npm run build
dist_dir="../nodes/web/static/"
cd "$dist_dir"
dist_file_full="${cur_dir}/releases/comfystream-uikit.zip"
zip -DTr9q "${dist_file_full}" ./
echo "dist_file=${dist_file_full}" >> $GITHUB_OUTPUT
cd -
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-artifacts
path: releases/
- name: Create release
if: ${{ github.ref_type == 'tag' }}
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.build.outputs.dist_file }}
make_latest: true
generate_release_notes: true