forked from julianschill/klipper-led_effect
-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (99 loc) · 3.4 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
name: Release
on:
push:
tags:
- 'v*'
jobs:
createrelease:
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: true
prerelease: true
- name: Output Release URL File
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
- name: Save Release URL File for publish
uses: actions/upload-artifact@v4
with:
name: release_url
path: release_url.txt
build:
name: Build packages
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
TARGET: macos
CMD_BUILD: >
pyinstaller -F -w -n ledeffect-simulator-macos -p .. app.py &&
cd dist/ &&
zip -r9 ledeffect-simulator-macos ledeffect-simulator-macos.app
OUT_FILE_NAME: ledeffect-simulator-macos.zip
ASSET_MIME: application/zip
POETRY_FOLDER: ~/.local
- os: windows-latest
TARGET: windows
CMD_BUILD: pyinstaller -F -w -n ledeffect-simulator-win -p .. app.py
OUT_FILE_NAME: ledeffect-simulator-win.exe
ASSET_MIME: application/vnd.microsoft.portable-executable
POETRY_FOLDER: C:\Users\runneradmin\.local
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
#- name: cache poetry install
# uses: actions/cache@v3
# with:
# path: ${{matrix.POETRY_FOLDER}}
# key: poetry-1.3.3-0
- uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: cache deps
id: cache-deps
uses: actions/cache@v4
with:
path: simulator/.venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
- name: Install environment
working-directory: ./simulator
run: ${{matrix.POETRY_FOLDER}}/bin/poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- name: Install root environment
working-directory: ./simulator
run: ${{matrix.POETRY_FOLDER}}/bin/poetry install --no-interaction
- name: Build with pyinstaller for ${{matrix.TARGET}}
working-directory: ./simulator
run: ${{matrix.POETRY_FOLDER}}/bin/poetry run ${{matrix.CMD_BUILD}}
- name: Load Release URL File from release job
uses: actions/download-artifact@v4
with:
name: release_url
- name: Get Release File Name & Upload URL
id: get_release_info
shell: bash
run: |
value=`cat release_url.txt`
echo ::set-output name=upload_url::$value
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: simulator/dist/${{matrix.OUT_FILE_NAME}}
asset_name: ${{ matrix.OUT_FILE_NAME}}
asset_content_type: ${{ matrix.ASSET_MIME}}