Skip to content

Commit

Permalink
further updated gh-action
Browse files Browse the repository at this point in the history
  • Loading branch information
stschiff committed Mar 6, 2024
1 parent d702c1c commit b8ecdd5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
needs: [create_release]
name: ${{ matrix.os }}/GHC ${{ matrix.ghc }}/${{ github.ref_name }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false

matrix:
os: [macos-latest,ubuntu-latest]
ghc: ["9.4.7"]
Expand All @@ -67,7 +70,7 @@ jobs:

- name: Rename binaries
run: |
for TOOL in genoStats pileupCaller vcf2eigenstrat; do cp ~/.local/bin/$TOOL $TOOL-$RUNNER_OS; done
for TOOL in genoStats pileupCaller vcf2eigenstrat; do mv ~/.local/bin/$TOOL ~/.local/bin/$TOOL-$RUNNER_OS; done
- name: Upload Release Asset
id: upload-release-asset
Expand All @@ -77,6 +80,6 @@ jobs:
draft: true
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "genoStats-$RUNNER_OS,pileupCaller-$RUNNER_OS,vcf2eigenstrat-$RUNNER_OS"
artifacts: "~/.local/bin/*"
artifactContentType: application/octet-stream

0 comments on commit b8ecdd5

Please sign in to comment.