Skip to content

Commit

Permalink
feat: Added Build DMG workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Jul 30, 2024
1 parent 9ab4883 commit b92053a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build_dmg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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 build/macos_build.sh
./build/macos_build.sh
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gpt-computer-assistant
path: dist/*.dmg

0 comments on commit b92053a

Please sign in to comment.