Skip to content

Commit

Permalink
ci: Fix ubuntu artifact unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Feb 5, 2025
1 parent 9c1454c commit 4ccfbe6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -404,13 +404,13 @@ jobs:
echo "XEMU_VERSION=$(cat XEMU_VERSION)" >> $GITHUB_ENV
- name: Extract Ubuntu artifacts
run: |
pushd dist/xemu-ubuntu-release
tar xvf xemu-ubuntu-release.tgz
popd
pushd dist/xemu-ubuntu-debug
tar xvf xemu-ubuntu-debug.tgz
popd
for arch in x86_64 aarch64; do
for config in release debug; do
pushd dist/xemu-ubuntu-$arch-$config
tar xvf xemu-ubuntu-$arch-$config.tgz
popd
done
done
# Architecture tags were recently added to the Windows release path. Provide an alias with the former name for a while.
- name: Add transitionary package alias
run: |
Expand Down

0 comments on commit 4ccfbe6

Please sign in to comment.