Skip to content

Commit

Permalink
remove .app from artifact name in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
wkozyra95 committed Oct 2, 2023
1 parent a1aaf60 commit 85f492a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package_for_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:

- uses: actions/upload-artifact@v3
with:
name: video_compositor_darwin_x86_64.app.tar.gz
path: video_compositor_darwin_x86_64.app.tar.gz
name: video_compositor_darwin_x86_64.tar.gz
path: video_compositor_darwin_x86_64.tar.gz
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ target/
/video_compositor.app
/video_compositor
/video_compositor_linux_x86_64.tar.gz
/video_compositor_darwin_aarch64.app.tar.gz
/video_compositor_darwin_x86_64.app.tar.gz
/video_compositor_darwin_aarch64.tar.gz
/video_compositor_darwin_x86_64.tar.gz
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ mkdir -p "$ROOT_DIR/release_tmp"
cd "$ROOT_DIR/release_tmp"

gh run download "$WORKFLOW_RUN_ID" -n video_compositor_linux_x86_64.tar.gz
gh run download "$WORKFLOW_RUN_ID" -n video_compositor_darwin_x86_64.app.tar.gz
gh run download "$WORKFLOW_RUN_ID" -n video_compositor_darwin_x86_64.tar.gz
gh release create "$RELEASE_TAG"
gh release upload "$RELEASE_TAG" video_compositor_linux_x86_64.tar.gz
gh release upload "$RELEASE_TAG" video_compositor_darwin_x86_64.app.tar.gz
gh release upload "$RELEASE_TAG" video_compositor_darwin_x86_64.tar.gz

rm -rf "$ROOT_DIR/release_tmp"

0 comments on commit 85f492a

Please sign in to comment.