Skip to content

trying to get icons to work on the app and mac .dmg #15

trying to get icons to work on the app and mac .dmg

trying to get icons to work on the app and mac .dmg #15

Workflow file for this run

name: Release macOS dmg
on:
workflow_dispatch:
push:
branches: [ GovertDev ]
jobs:
build_on_mac:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- uses: actions/setup-node@v4
with:
node-version: 20
- name: install dependencies
run: npm install
- name: build
run: npm run make-mac
- name: Publish app
run: npm run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}