-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (95 loc) · 2.71 KB
/
python-ci.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
name: Python application CI/CD
permissions:
contents: write
issues: write
pull-requests: write
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [windows-latest]
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build with PyInstaller
run: python build.py
- name: Zip everything inside dist for windows
if: ${{ runner.os == 'Windows' }}
run: |
mkdir releases
cd dist
Compress-Archive -Path * -DestinationPath ../releases/${{ runner.os }}-build.zip
- name: Zip everything inside dist for macos and linux
if: ${{ runner.os != 'Windows' }}
run: |
mkdir releases
cd dist
zip -r ../releases/${{ runner.os }}-build.zip *
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-build
path: releases/${{ runner.os }}-build.zip
publish-release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Automatic Semantic Versioning
id: semver
uses: paulhatch/[email protected]
with:
branch: main
tag_prefix: ""
bump_each_commit: true
- name: Set new tag
run: git tag ${{ steps.semver.outputs.version }}
- name: Push tag
uses: ad-m/github-push-action@master
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
tags: true
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
path: releases/
- name: Display structure of downloaded files
run: ls -R ./
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.semver.outputs.version }}
draft: false
prerelease: false
files: |
./releases/*/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup Artifacts
uses: geekyeggo/delete-artifact@v2
with:
name: |
Windows-build
macOS-build
Linux-build