Skip to content

Commit 2a45cd8

Browse files
committed
Merge branch 'master' of github.com:stschiff/sequenceTools
2 parents 231192c + 1167a98 commit 2a45cd8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: update-release
2222
run: |
2323
for TOOL in genoStats pileupCaller vcf2eigenstrat; do
24-
.github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-linux
24+
bash .github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-linux
2525
done
2626
build-on-mac:
2727
runs-on: macos-latest
@@ -38,5 +38,5 @@ jobs:
3838
run: |
3939
for TOOL in genoStats pileupCaller vcf2eigenstrat; do
4040
cp .local/bin/$TOOL $TOOL-macOS
41-
.github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-macOS
41+
bash .github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-macOS
4242
done

.github/workflows/upload-release-asset.sh renamed to .github/workflows/upload-github-release-asset.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ echo "Uploading asset... "
6161
# Construct url
6262
GH_ASSET="https://uploads.github.com/repos/$owner/$repo/releases/$id/assets?name=$(basename $filename)"
6363

64-
curl "$GITHUB_OAUTH_BASIC" --data-binary @"$filename" -H "Authorization: token $github_api_token" -H "Content-Type: application/octet-stream" $GH_ASSET
64+
curl "$GITHUB_OAUTH_BASIC" --data-binary @"$filename" -H "Authorization: token $github_api_token" -H "Content-Type: application/octet-stream" $GH_ASSET

0 commit comments

Comments
 (0)