-
Notifications
You must be signed in to change notification settings - Fork 2
109 lines (107 loc) · 3.29 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
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
on:
push:
tags:
- 'v*'
name: build-release
jobs:
setup:
name: create release
runs-on: ubuntu-latest
steps:
- name: create_release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
windows:
needs: setup
name: windows
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: pyinstaller
run: |
pip install PyInstaller
pip install requests
- name: build
run: pyinstaller scripts\pmbuild.py --onefile -i NONE --distpath build/dist/ --workpath build/work/ --hiddenimport=requests
- name: zip
run: Compress-Archive -Path build/dist/* -DestinationPath build/Windows-x64.zip
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.setup.outputs.upload_url }}
asset_path: ./build/Windows-x64.zip
asset_name: Windows-x64.zip
asset_content_type: application/zip
macos:
needs: setup
name: macos
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: pyinstaller
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
- run: |
pip3 install PyInstaller
pip3 install requests
- name: build
run: python3 -m PyInstaller scripts/pmbuild.py -y --onefile -i NONE --distpath build/dist/ --workpath build/work/ --hiddenimport=requests
- name: zip
run: zip -rj build/macOS-x64.zip build/dist
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.setup.outputs.upload_url }}
asset_path: ./build/macOS-x64.zip
asset_name: macOS-x64.zip
asset_content_type: application/zip
linux:
needs: setup
name: linux
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: pyinstaller
run: |
python3 -m pip install PyInstaller
python3 -m pip install requests
- name: build
run: python3 -m PyInstaller scripts/pmbuild.py -y --onefile -i NONE --distpath build/dist/ --workpath build/work/ --hiddenimport=requests
- name: zip
run: zip -rj build/linux-x64.zip build/dist
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.setup.outputs.upload_url }}
asset_path: ./build/linux-x64.zip
asset_name: linux-x64.zip
asset_content_type: application/zip