-
Notifications
You must be signed in to change notification settings - Fork 53
84 lines (70 loc) · 2.07 KB
/
build_wxhelper-3.9.5.81.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Build wxhelper-3.9.5.81
on:
push:
tags:
- 'wxhelper-3.9.5.81-*'
paths-ignore:
- '**.md'
- '**.spec.js'
- '.idea'
- '.vscode'
- '.dockerignore'
- 'Dockerfile'
- '.gitignore'
- '.github/**'
- '!.github/workflows/build.yml'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [windows-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Build Release Files
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup Artifacts for MacOS
if: matrix.os == 'macos-latest'
run: |
npx rimraf --glob "release/!(*.dmg)"
- name: Cleanup Artifacts for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
npx rimraf --glob "release/!(*.AppImage)"
- name: Cleanup Artifacts for Windows
if: matrix.os == 'windows-latest'
run: |
npx rimraf --glob "release/!(*.exe)"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: release_on_${{ matrix.os }}
path: release
retention-days: 5
- name: Extract Version
id: extract_version
run: |
echo "::set-output name=version::$(echo ${{ github.ref }} | sed 's/refs\/tags\///')"
- name: Create Release and Upload Release Asset
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ steps.extract_version.outputs.version }}
name: wxhelper-3.9.5.81
files: 'release/**'
body: ''
# prerelease: true
# generate_release_notes: true
# fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}