Skip to content

Commit

Permalink
fix windows release
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Apr 14, 2024
1 parent 4bf1290 commit 218d739
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/cd.yml
Expand Up @@ -68,16 +68,24 @@ jobs:
- name: Build Release Mac
if: matrix.os == 'macos-latest'
run: GITUI_RELEASE=1 make release-mac
env:
GITUI_RELEASE: 1
run: make release-mac
- name: Build Release Linux
if: matrix.os == 'ubuntu-latest'
run: GITUI_RELEASE=1 make release-linux-musl
env:
GITUI_RELEASE: 1
run: make release-linux-musl
- name: Build Release Win
if: matrix.os == 'windows-latest'
run: GITUI_RELEASE=1 make release-win
env:
GITUI_RELEASE: 1
run: make release-win
- name: Build Release Linux ARM
if: matrix.os == 'ubuntu-22.04'
run: GITUI_RELEASE=1 make release-linux-arm
env:
GITUI_RELEASE: 1
run: make release-linux-arm

- name: Set SHA
if: matrix.os == 'macos-latest'
Expand Down

0 comments on commit 218d739

Please sign in to comment.