Skip to content

Commit

Permalink
add mac
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGoogle committed Aug 2, 2022
1 parent 2802088 commit 8ceba79
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@ on:

jobs:
build:
runs-on: windows-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7]
os: [macOS-latest, windows-latest]
include: # match Python bitness shipped with Galaxy
- os: macOS-latest
arch: x64
- os: windows-latest
arch: x86

steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -28,11 +34,9 @@ jobs:
- name: Build plugin
uses: GOG-Nebula/action-build-plugin@feat/simple_composite_action
with:
python-arch: 'x86'
python-arch: ${{ matrix.arch }}

- name: Show build dir
run: |
ls
- run: ls

- name: Create zip archive
shell: bash
Expand Down

0 comments on commit 8ceba79

Please sign in to comment.