Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pluveto authored Jun 23, 2024
1 parent fe22773 commit 2410efa
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,17 @@ jobs:
if: matrix.os == 'windows-latest'
run: choco install make

- name: Build
run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
make linux
elif [ "${{ matrix.os }}" == "windows-latest" ]; then
make windows
elif [ "${{ matrix.os }}" == "macos-13" ]; then
make macos
fi
- name: Build on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: make linux

- name: Build on Windows
if: matrix.os == 'windows-latest'
run: make windows

- name: Build on macOS
if: matrix.os == 'macos-13'
run: make macos

- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 2410efa

Please sign in to comment.