Merge pull request #30 from QAInsights/fix/gh-actions #19
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: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- 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 x86_64 architecture | |
run: | | |
arch -x86_64 python setup.py py2app --arch x86_64 | |
mv dist dist-x86_64 | |
# - name: Generate app for arm64 architecture | |
# run: | | |
# arch -arm64 python setup.py py2app --arch arm64 | |
# mv dist dist-arm64 | |
- name: Upload x86_64 app | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist-x86_64 | |
path: dist-x86_64 | |
# - name: Upload arm64 app | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: dist-arm64 | |
# path: dist-arm64 | |
# - name: Create Release | |
# id: create_release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: ${{ github.ref }} | |
# release_name: Release ${{ github.ref }} | |
# body: | | |
# Release ${{ github.ref }} | |
# draft: false | |
# prerelease: false | |
# - name: Upload Release Asset | |
# id: upload-release-asset | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: dist/ | |
# asset_name: dist | |
# asset_content_type: application/zip | |
# path: dist |