-
Notifications
You must be signed in to change notification settings - Fork 77
72 lines (53 loc) · 1.79 KB
/
Build-Windows.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
name: Build-Windows
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
runs-on: windows-latest
steps:
# Check-out repository
- uses: actions/[email protected]
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
# Install dependencies
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
# Build python script into a stand-alone exe
- uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: injector/steamodded_injector.py
onefile: true
standalone: true
include-data-dir: |
core=core
debug=debug
loader=loader
# Uploads artifacts
- name: "Upload Artifacts"
uses: actions/[email protected]
with:
name: Steamodded-Windows-${{github.run_id}}
path: build/steamodded_injector.exe
- name: Upload Artifact to Release
uses: softprops/action-gh-release@master
with:
prerelease: true
tag_name: Nightly-${{github.run_id}}
name: Nightly-${{github.run_id}}
token: ${{ secrets.GITHUB_TOKEN }}
files: build/steamodded_injector.exe