Skip to content

Commit

Permalink
Update build_multi_platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
biocodz authored Mar 1, 2024
1 parent ef44405 commit 54bfe1d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_multi_platform.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build on multi-plarform
name: build multi-platform
on:
workflow_dispatch:
jobs:
Expand All @@ -8,6 +8,8 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
exclude:
- os: windows-latest
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -18,7 +20,7 @@ jobs:
python setup.py -n all
- name: upload artifacts
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'macos-latest' }}
if: matrix.os == 'macos-latest'
with:
retention-days: 3
path: |
Expand Down

0 comments on commit 54bfe1d

Please sign in to comment.