Skip to content

Commit

Permalink
ci: repair build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Oct 28, 2023
1 parent 520fdd8 commit d40c33b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy_github.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to GitHub Releases for macOS
name: Deploy to GitHub Releases

on:
push:
Expand All @@ -7,8 +7,12 @@ on:

jobs:
build:
name: macOS Release
runs-on: macos-latest
name: Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9']
os: [macos-latest, windows-latest]
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down

0 comments on commit d40c33b

Please sign in to comment.