Skip to content

Commit

Permalink
add in macOS build target and remove unnecessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Marshall-Hallenbeck committed Sep 30, 2023
1 parent 3053b6d commit bf91d6d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/netexec-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,23 @@ name: Build Binaries

on:
workflow_dispatch:
push:

jobs:
build:
name: Building Binary on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ["3.11"]
#os: [ubuntu-latest, macOS-latest, windows-latest]
#python-version: ["3.8", "3.9", "3.10", "3.11"]
#python-version: ["3.8", "3.9", "3.10", "3.11"] # for binary builds we only need one version
steps:
- uses: actions/checkout@v3
- name: NetExec set up python on ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build Native Binary
#if: runner.os == 'windows'
run: |
pip install pyinstaller
pip install .
Expand Down

0 comments on commit bf91d6d

Please sign in to comment.