Skip to content

Commit

Permalink
ci: make release-cpp workflow on windows also ainstall zip
Browse files Browse the repository at this point in the history
  • Loading branch information
melkyades committed Sep 23, 2024
1 parent 099686e commit 5d0ecf8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
# we build most things from ubuntu: linux specific ones and also portable things (i.e. js-vm)
build-linux:
name: Build and Test bootstrap - ${{matrix.go-version}} ${{matrix.os}}
name: Build JS and native CPP linux
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

#only needed for windows-specific stuff (i.e. cpp-vm exe)
build-win:
name: Build and Test bootstrap - ${{matrix.go-version}} ${{matrix.os}}
name: Build native CPP windows
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -79,8 +79,8 @@ jobs:
run: "echo \"RELEASE_TAG=${GITHUB_REF#refs/tags/}\" >> $GITHUB_ENV"
shell: "bash"

- name: Set up rsync on Windows # needed for packaging
run: choco install rsync --yes
- name: Set up rsync and zip on Windows # needed for packaging
run: choco install rsync zip --yes

- name: Package CPP
run: make release-cpp
Expand Down

0 comments on commit 5d0ecf8

Please sign in to comment.