-
Notifications
You must be signed in to change notification settings - Fork 30
131 lines (107 loc) · 4.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Build
on:
push:
branches: [ "master" ]
tags:
- 'v*'
pull_request:
branches: [ "master" ]
workflow_dispatch:
env:
BUILD_TYPE: Release
wxBUILD_SHARED: OFF
wxBUILD_USE_STATIC_RUNTIME: ON
jobs:
create_release:
name: Create Release if Needed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- if: contains(github.ref, 'refs/tags/')
name: Get Tag Message
run: |
cd ${{github.workspace}}
echo "$(git for-each-ref refs/tags/${{github.ref_name}} --format='%(contents)')" >> "${{github.workspace}}/release_notes.txt"
- if: contains(github.ref, 'refs/tags/')
name: Prepare Release
uses: softprops/action-gh-release@v1
with:
name: Delta Patcher ${{ github.ref_name }}
body_path: ${{github.workspace}}/release_notes.txt
draft: false
prerelease: false
generate_release_notes: false
build_release:
name: Build
needs: create_release
strategy:
matrix:
include:
- os: ubuntu-latest
release_package: linux_bin_gtk3_x86_64
- os: macos-11
release_package: macos_bin_universal
- os: windows-2022
release_package: windows_bin_x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Get Tag Message Test
run: |
echo "$(git for-each-ref refs/tags/${{github.ref_name}} --format='%(contents)')" >> release_notes.txt
cat release_notes.txt
- if: startsWith(matrix.os, 'ubuntu')
name: Pull dependencies
run: sudo apt install -y build-essential cmake git libgtk-3-dev
- if: startsWith(matrix.os, 'windows')
name: Configure CMake Windows
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DwxBUILD_SHARED=${{env.wxBUILD_SHARED}} -DwxBUILD_USE_STATIC_RUNTIME=${{env.wxBUILD_USE_STATIC_RUNTIME}}
- if: startsWith(matrix.os, 'ubuntu')
name: Configure CMake Linux
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DwxBUILD_SHARED=${{env.wxBUILD_SHARED}}
- if: startsWith(matrix.os, 'macOS')
name: Configure CMake MacOS
run: cmake -B ${{github.workspace}}/build -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DwxBUILD_SHARED=${{env.wxBUILD_SHARED}} -DwxBUILD_USE_STATIC_RUNTIME=${{env.wxBUILD_USE_STATIC_RUNTIME}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel 2
- if: startsWith(matrix.os, 'windows')
name: Package Windows
run: |
cp ${{github.workspace}}/CHANGELOG.txt ${{github.workspace}}/build/app/
cp ${{github.workspace}}/build/app/Release/DeltaPatcher.exe ${{github.workspace}}/build/app/
cd ${{github.workspace}}/build/app/
Compress-Archive -Path DeltaPatcher.exe,CHANGELOG.txt -Destination ${{ matrix.release_package }}.zip
- if: startsWith(matrix.os, 'ubuntu')
name: Package Linux
run: |
cp ${{github.workspace}}/CHANGELOG.txt ${{github.workspace}}/build/app/
cd ${{github.workspace}}/build/app/
zip ${{ matrix.release_package }}.zip DeltaPatcher CHANGELOG.txt
- if: startsWith(matrix.os, 'macOS')
name: Package MacOS
run: |
cp ${{github.workspace}}/CHANGELOG.txt ${{github.workspace}}/build/app
cd ${{github.workspace}}/build/app
zip -r ${{ matrix.release_package }}.zip DeltaPatcher.app/ CHANGELOG.txt
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.release_package }}
path: ${{github.workspace}}/build/app/${{ matrix.release_package }}.zip
- if: contains(github.ref, 'refs/tags/') && startsWith(matrix.os, 'windows')
name: Define Asset Path Windows
id: asset_path_win
run: |
$ass_path = "${{github.workspace}}/build/app/${{ matrix.release_package }}.zip" -replace '\\','/'
echo "ASSET_PATH=$ass_path" >> $env:GITHUB_OUTPUT
- if: contains(github.ref, 'refs/tags/') && startsWith(matrix.os, 'windows')
name: Upload Release Assets Windows
uses: softprops/action-gh-release@v1
with:
files: ${{ steps.asset_path_win.outputs.ASSET_PATH }}
- if: contains(github.ref, 'refs/tags/') && !startsWith(matrix.os, 'windows')
name: Upload Release Assets
uses: softprops/action-gh-release@v1
with:
files: ${{github.workspace}}/build/app/${{ matrix.release_package }}.zip