Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nqeron authored Jan 24, 2024
1 parent a77abec commit a8dba7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
needs: release
strategy:
matrix:
os: [windows-latest, macos-latest]
os: [windows-latest, macos-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}
env:
out-ext: ${{ matrix.os == 'windows-latest' && '.exe' || '.sh' }}
out-ext: ${{ matrix.os == 'windows-latest' && '.exe' || (matrix.os == 'macos-latest' && '-mac.sh' || '-linux.sh') }}
steps:

- name: Checkout code
Expand Down

0 comments on commit a8dba7d

Please sign in to comment.