Add: GitHub Action #33
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Hamster | |
on: | |
push: | |
branches: [ "fix/gh-actions" ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10.11 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10.11" | |
- name: List current directory | |
run: | | |
ls -la | |
uname -a | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install py2app | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Generate app for arm64 architecture | |
run: | | |
python setup.py py2app | |
mv dist dist-arm64 | |
- name: Convert dist-arm64 to DMG | |
run: | | |
hdiutil create -volname "Hamster" -srcfolder dist-arm64 -ov -format UDZO dist-arm64/Hamster.dmg | |
- name: Upload arm64 app | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Hamster | |
path: dist-arm64/Hamster.dmg | |