Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Disable Mac builds and update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BrenekH committed Jan 30, 2024
1 parent 2c08a6d commit 2d580d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
python-version: [3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -50,13 +50,13 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest] #, macos-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.11

Expand All @@ -69,7 +69,7 @@ jobs:
run: poetry run python -m PyInstaller --onefile --name mcmm binary.py

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: mcmm-${{ matrix.os }}-amd64
path: ${{ github.workspace }}/dist/mcmm*

0 comments on commit 2d580d1

Please sign in to comment.