forked from dashpay/electrum-dash-old
-
Notifications
You must be signed in to change notification settings - Fork 8
121 lines (115 loc) · 3.99 KB
/
build_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
name: Build release workflow
on:
workflow_dispatch:
inputs:
target_os:
description: 'Target OS for build'
required: true
type: choice
options:
- all
- linux
- windows
- osx
jobs:
build_linux:
runs-on: ubuntu-22.04
if: ${{ inputs.target_os == 'all' || inputs.target_os == 'linux' }}
name: create release for Linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
source ./contrib/dash/travis/electrum_dash_version_env.sh
echo "pkg_ver=$(echo $DASH_ELECTRUM_VERSION)" >> $GITHUB_OUTPUT
- name: Prepare build
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
./contrib/dash/actions/install-linux.sh
- name: Build Linux
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
./contrib/dash/actions/script-linux.sh
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: linux-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-x86_64.AppImage
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}.tar.gz
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}.zip
build_windows:
runs-on: ubuntu-22.04
if: ${{ inputs.target_os == 'all' || inputs.target_os == 'windows' }}
name: create release for Windows
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
source ./contrib/dash/travis/electrum_dash_version_env.sh
echo "pkg_ver=$(echo $DASH_ELECTRUM_VERSION)" >> $GITHUB_OUTPUT
- name: Prepare build
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
./contrib/dash/actions/install-wine.sh
- name: Build Windows
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
./contrib/dash/actions/script-wine.sh
- name: Rename portable bin
run: mv dist/portable-electrum-firo-${{ steps.set_vars.outputs.pkg_ver }}.exe dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-portable.exe
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: windows-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-setup-win64.exe
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-setup-win32.exe
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-portable.exe
build_osx:
runs-on: macos-12
if: ${{ inputs.target_os == 'all' || inputs.target_os == 'osx' }}
name: create release for macOS
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
source ./contrib/dash/travis/electrum_dash_version_env.sh
echo "pkg_ver=$(echo $DASH_ELECTRUM_VERSION)" >> $GITHUB_OUTPUT
- name: Prepare build
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
./contrib/dash/actions/install-osx.sh
- name: Build dmg
env:
DASH_ELECTRUM_VERSION: ${{ steps.set_vars.outputs.pkg_ver }}
run: |
# For troubleshooting
echo $DASH_ELECTRUM_VERSION
./contrib/dash/actions/script-osx.sh
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: macos-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-macosx.dmg
merge:
runs-on: ubuntu-latest
needs: [build_linux, build_windows, build_osx]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4