We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d8379 commit 693a627Copy full SHA for 693a627
.github/workflows/release-exe.yml
@@ -12,12 +12,21 @@ jobs:
12
steps:
13
- uses: actions/checkout@v4
14
- uses: prefix-dev/setup-pixi@v0.8.1
15
+ with:
16
+ activate-environment: true
17
- name: Build
18
run: pixi run build
19
- name: Package binary files
20
+ shell: bash
21
run: |
22
+ PIXI_BIN="$CONDA_PREFIX/Library/bin"
23
+ cp "$PIXI_BIN"/geos_c.dll build/
24
+ cp "$PIXI_BIN"/geos.dll build/
25
+ cp "$PIXI_BIN"/boost_filesystem*.dll build/
26
+ cp "$PIXI_BIN"/gmp*.dll build/
27
+ cp "$PIXI_BIN"/mpfr*.dll build/
28
cd build
- 7z a val3dity-win64.zip val3dity.exe
29
+ 7z a val3dity-win64.zip val3dity.exe *.dll
30
- name: Upload binary files as artifact
31
uses: actions/upload-artifact@main
32
with:
0 commit comments