Skip to content

Commit

Permalink
Merge pull request #163 from ThrownLemon/patch-1
Browse files Browse the repository at this point in the history
Fix wrong name for macos artifact and add .zip
  • Loading branch information
cryptokatz authored Jun 30, 2020
2 parents 1e868de + 8242dd8 commit aa6b616
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
for f in src/*; do [[ -x $f && -f $f ]] && exeFiles+=( "$f" ); done
strip "${exeFiles[@]}"
cp "${exeFiles[@]}" "$release_name/"
echo "::set-output name=release_name::${release_name}"
echo "::set-output name=release_name::${release_name}.zip"
echo "::set-output name=artifact_path::$build_folder/$release_name"
- name: Upload To GH Artifacts
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
for f in src/*; do [[ -x $f && -f $f ]] && exeFiles+=( "$f" ); done
strip "${exeFiles[@]}"
cp "${exeFiles[@]}" "$release_name/"
echo "::set-output name=release_name::${release_name}"
echo "::set-output name=release_name::${release_name}.zip"
echo "::set-output name=artifact_path::$build_folder/$release_name"
- name: Upload To GH Artifacts
Expand All @@ -134,7 +134,7 @@ jobs:
build_folder="build/"
ccx_ver=${GITHUB_SHA::7}
ccx_ver_folder=$(echo $ccx_ver | sed 's/\.//g')
release_name=ccx-cli-ubuntu-1804-v"$ccx_ver"
release_name=ccx-cli-macos-v"$ccx_ver"
brew install gcc boost@1.60
brew link boost@1.60 --force
mkdir "$build_folder"
Expand All @@ -161,4 +161,4 @@ jobs:
name: ${{ steps.build.outputs.release_name }}
path: ${{ steps.build.outputs.artifact_path }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit aa6b616

Please sign in to comment.