Skip to content

Commit

Permalink
Workflows: Add pyinstaller bundler
Browse files Browse the repository at this point in the history
Automatically runs on commit to create a pyinstaller that can be
downloaded and one-click launched.

Signed-off-by: kingbri <[email protected]>
  • Loading branch information
bdashore3 committed Jan 19, 2024
1 parent 902e841 commit 1567a82
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: pyinstaller

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install tokenizers pyinstaller
- name: Get commit SHA
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Build
run: pyinstaller main.py
- name: Package ipa
run: |
mkdir Payload
cp -r dist/main Payload
zip -r TabbyAPI-nightly-${{ env.sha_short }}.zip Payload
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: TabbyAPI-nightly-${{ env.sha_short }}.zip
path: TabbyAPI-nightly-${{ env.sha_short }}.zip
if-no-files-found: error

0 comments on commit 1567a82

Please sign in to comment.