Merge pull request #24 from QAInsights/fix/gh-actions #13
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-13 | |
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 using py2app | |
run: | | |
python setup.py py2app --arch x86_64 | |
- name: List current directory | |
run: | | |
ls -la | |
uname -a | |
- name: Upload app | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist | |
path: dist | |
# - 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 |