-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Build Windows Executable - PyInstaller | ||
# Description: | ||
# Most of my projects come with a build.bat script that uses PyInstaller to freeze the examples | ||
# to an executable file. This Action will set up the envrionment and run this build.bat script, | ||
# then upload the resulting executables to a google cloud bucket. | ||
# Additionally the executables will be compressed and encrypted using 7z | ||
|
||
on: | ||
push: | ||
branches: | ||
- master # Trigger on push to master branch | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest # Use a Windows runner | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
|
||
steps: | ||
- uses: 'actions/checkout@v4' | ||
with: | ||
fetch-depth: 0 | ||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v1' | ||
with: | ||
credentials_json: '${{ secrets.GCLOUD_BUCKET_SERVICE_USER_SECRET }}' | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Determine Version | ||
id: version | ||
run: | | ||
$VERSION = python -c "import sys; sys.path.append('${{ github.event.repository.name }}'); import _version; print(_version.__version__)" | ||
echo "PROJVERSION=$VERSION" >> $GITHUB_STATE | ||
shell: powershell | ||
|
||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyinstaller virtualenv | ||
- name: Run Batch File to Build Executable | ||
run: builder\pyinstaller\build.bat | ||
|
||
- name: Compress executables | ||
run: | | ||
"C:\Program Files\7-Zip\7z.exe a secure.7z builder\pyinstaller\*.exe -pprotected" | ||
- name: Upload Executable | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: executable | ||
path: builder\pyinstaller\*.exe | ||
|
||
- name: 'Set up Cloud SDK' | ||
uses: 'google-github-actions/setup-gcloud@v1' | ||
with: | ||
version: '>= 390.0.0' | ||
|
||
- name: Upload Executables to GCS | ||
run: | | ||
gsutil cp builder\pyinstaller\*.exe gs://skelsec-github-foss/${{ github.event.repository.name }}/${{ github.core.saveState.PROJVERSION }}/ |