Update requirements.txt #2
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
name: Package Tauri App and Python Server for MacOS | |
on: | |
push: | |
branches: | |
- main | |
# pull_request: | |
# branches: | |
# - main | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout AutoSubs Repo Code | |
uses: actions/checkout@v4 | |
- name: Package Python Server | |
run: | | |
cd Mac-Server | |
python3 -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
pyinstaller transcription-server.spec --noconfirm | |
deactivate | |
- name: Get Latest Release Upload URL | |
id: get_upload_url | |
run: | | |
response=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
https://api.github.com/repos/${{ github.repository }}/releases/latest) | |
echo "upload_url=$(echo $response | jq -r .upload_url | sed -e 's/{?name,label}//')" >> $GITHUB_ENV | |
- name: Upload to Latest Release | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ env.upload_url }} | |
asset_path: Mac-Server/Transcription-Server/transcription-server | |
asset_name: transcription-server | |
asset_content_type: application/octet-stream |