Skip to content

Commit

Permalink
adjust paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Sep 6, 2024
1 parent ad72aff commit 8c2527d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Package Toolchain
run: |
container_id="$(docker create $DOCKER_IMAGE_TAG)"
docker cp "$container_id:/downloads" .
docker cp "$container_id:/downloads/artifacts" .
- name: Determine Release Tag
run: |
Expand All @@ -76,7 +76,7 @@ jobs:
- name: Upload toolchain to release
uses: svenstaro/upload-release-action@v2
with:
file: "*.tar.zst"
file: "artifacts/*.tar.zst"
file_glob: true
tag: ${{ env.RELEASE_TAG }}
overwrite: true
4 changes: 4 additions & 0 deletions clang/clang_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,7 @@ done

cd package
tar -cf - * | zstd --ultra -22 -o "../linux_$clang_arch.tar.zst"

cd ..
mkdir artifacts
mv "linux_$clang_arch.tar.zst" "artifacts/linux_$clang_arch.tar.zst"

0 comments on commit 8c2527d

Please sign in to comment.