Skip to content

Commit

Permalink
Cleanup release bundle step
Browse files Browse the repository at this point in the history
  • Loading branch information
poszu committed May 19, 2023
1 parent 27dd8d8 commit 44f3ba3
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,12 @@ jobs:
make build VERSION=${{ steps.version.outputs.content }} BIN_DIR_WIN=./build
- name: Create release archive
shell: bash
env:
OUTNAME: ${{ env.OUTNAME }}
run: |
echo "OUTNAME = ${{ env.OUTNAME }} \n"
mkdir build_${{ runner.os }}
unzip libpost-*.zip -d build_${{ runner.os }}
rm -f build_${{ runner.os }}/prover.h
mv build_${{ runner.os }} $OUTNAME
mkdir $OUTNAME
mv ./build/* $OUTNAME
rm -f $OUTNAME/prover.h
zip -r $OUTNAME.zip $OUTNAME
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v0
Expand Down

0 comments on commit 44f3ba3

Please sign in to comment.