Skip to content

fix: Resolved name problem between workflow and script location #2

fix: Resolved name problem between workflow and script location

fix: Resolved name problem between workflow and script location #2

Workflow file for this run

name: Build DMG
on:
push:
branches:
- master
pull_request:
branches:
- onuratakan
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[base]"
- name: Build DMG
run: |
chmod +x os/macos_build.sh
./os/macos_build.sh
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gpt-computer-assistant
path: dist/*.dmg