Skip to content

Commit

Permalink
remove remaining matrix reference
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenDueck committed Mar 14, 2024
1 parent e319e37 commit f76a26a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
# Create a GitHub release
- name: Create Release
id: create_release
if: matrix.os == 'linux'
if: github.event_name == 'push'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -76,6 +76,7 @@ jobs:

# Upload release asset for Linux
- name: Upload Release Asset Linux
if: github.event_name == 'push'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -87,6 +88,7 @@ jobs:

# Upload release asset for Darwin
- name: Upload Release Asset Darwin
if: github.event_name == 'push'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -98,6 +100,7 @@ jobs:

# Upload release asset for Windows
- name: Upload Release Asset Windows
if: github.event_name == 'push'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f76a26a

Please sign in to comment.