-
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (76 loc) · 2.83 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
name: Build Binaries
on:
push:
tags:
- 'v*'
jobs:
build-windows-binary:
runs-on: windows-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Create and start virtual environment
run: |
python3 -m venv venv
venv\Scripts\activate.bat
- name: Install dependencies
run: pip install -r src/requirements.txt
- name: Build Windows binary
run: pyinstaller --onefile -w src/awsmanager.py -n awsmanager-windows-${{ github.ref_name }}.exe --icon=icons/Happy_Cloud.ico
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: awsmanager-windows-${{ github.ref_name }}.exe
path: dist/awsmanager-windows-${{ github.ref_name }}.exe
build-linux-binary:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: Update disitribution
run: sudo apt-get update && sudo apt-get upgrade -y
- name: Install dependencies
run: sudo apt-get install build-essential libgtk-3-dev
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Create and start virtual environment
run: |
python3 -m venv venv
source venv/bin/activate
- name: Install dependencies
run: pip install -r src/requirements.txt
- name: Build Linux binary
run: pyinstaller --onefile src/awsmanager.py -n awsmanager-linux-${{ github.ref_name }} --icon=icons/Happy_Cloud.ico
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: awsmanager-linux-${{ github.ref_name }}
path: dist/awsmanager-linux-${{ github.ref_name }}
deploy:
runs-on: ubuntu-latest
needs: [build-windows-binary, build-linux-binary]
steps:
- uses: actions/download-artifact@v4
with:
name: awsmanager-linux-${{ github.ref_name }}
- uses: actions/download-artifact@v4
with:
name: awsmanager-windows-${{ github.ref_name }}.exe
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
draft: false
prerelease: false
generate_release_notes: true
files: |
awsmanager-linux-${{ github.ref_name }}
awsmanager-windows-${{ github.ref_name }}.exe