Skip to content

Commit

Permalink
- fixed zip command
Browse files Browse the repository at this point in the history
  • Loading branch information
iulianpascalau committed Aug 30, 2024
1 parent ff1a2d6 commit 7908382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Package build output
run: |
BUILD_DIR=${GITHUB_WORKSPACE}/artifacts
BUILD_DIR=${GITHUB_WORKSPACE}/artifacts/contracts
APP_VER_SHORT=$(git describe --tags)
ARCHIVE="artifacts_""$APP_VER_SHORT"".zip"
Expand Down Expand Up @@ -67,6 +67,6 @@ jobs:
run: |
gh release create --draft --notes="Release draft from Github Actions" vNext
sleep 10
for i in $(find ./assets -name '*.zip' -type f); do
for i in $(find ${GITHUB_WORKSPACE} -name '*.zip' -type f); do
gh release upload vNext ${i}
done

0 comments on commit 7908382

Please sign in to comment.