Skip to content

Commit cbce2b6

Browse files
committed
updated conda docker to build all three executables
1 parent dd7bdf6 commit cbce2b6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ jobs:
9797
run: docker create --name linuxcontainer linux
9898

9999
- name: Copy executable
100-
run: docker cp linuxcontainer:/root/.local/bin/pileupCaller pileupCaller-conda-linux
100+
run: |
101+
docker cp linuxcontainer:/root/.local/bin/pileupCaller pileupCaller-conda-linux
102+
docker cp linuxcontainer:/root/.local/bin/genoStats genoStats-conda-linux
103+
docker cp linuxcontainer:/root/.local/bin/vcf2eigenstrat vcf2eigenstrat-conda-linux
104+
echo "BINARY_PATHS=pileupCaller-conda-linux,genoStats-conda-linux,vcf2eigenstrat-conda-linux" >> "$GITHUB_OUTPUT"
105+
shell: bash
101106

102107
- name: Upload Release Asset
103108
id: upload-release-asset
@@ -107,6 +112,6 @@ jobs:
107112
draft: true
108113
allowUpdates: true
109114
artifactErrorsFailBuild: true
110-
artifacts: pileupCaller-conda-linux
115+
artifacts: ${{ steps.binarypaths.outputs.BINARY_PATHS }}
111116
artifactContentType: application/octet-stream
112117

0 commit comments

Comments
 (0)