Skip to content

Commit

Permalink
Copy the binary after it has been built, not before
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterRugg authored Jan 17, 2024
1 parent 1c66457 commit 4e1863e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ jobs:
- name: Install dependencies
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
cp `cabal list-bin vipbundle` vipbundle
cabal build --only-dependencies
- name: Build
run: cabal build
run: |
cabal build
cp `cabal list-bin vipbundle` vipbundle
release:
needs: ubuntu_20_04_build
Expand Down

0 comments on commit 4e1863e

Please sign in to comment.