-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (55 loc) · 1.56 KB
/
release.yml
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
62
63
64
65
66
67
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Release
jobs:
build-project:
name: Build Project
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Generate build
run: npm run build
env:
CI: false
# Share artifact inside workflow
- name: Share artifact inside workflow
uses: actions/upload-artifact@v4
with:
name: DiyHueUI
path: |
build
dist
release-project:
name: Create Release
runs-on: ubuntu-latest
needs: build-project
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: DiyHueUI
- name: Test artifact download
run: ls -R
- name: Archive artifact
uses: thedoctor0/zip-release@main
with:
filename: DiyHueUI-release.zip
- name: Create and Upload Release
id: create_release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref_name }}
name: DiyHue UI release ${{ github.ref_name }}
files: DiyHueUI-release.zip
make_latest: true