Skip to content

Commit

Permalink
Move trace and logs artifacts to expected place (#15914)
Browse files Browse the repository at this point in the history
These aren't getting uploaded separately because they're still under
./packages (and not in /tmp as expected).

Signed-off-by: Jon Johnson <jon.johnson@chainguard.dev>
  • Loading branch information
jonjohnsonjr committed Mar 27, 2024
1 parent 67be670 commit 53eca6e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-beta.yaml
Expand Up @@ -99,6 +99,12 @@ jobs:
- name: Create an archive for uploading
if: ${{ always() }}
run: |
# Move logs so we can upload them separately.
mv ./packages/${{ matrix.arch }}/buildlogs /tmp/buildlogs
# Move trace so we can upload it separately.
mv ./packages/${{ matrix.arch }}/trace.json /tmp/trace.json
tar -cvzf /tmp/packages-${{ matrix.arch }}.tar.gz ./packages/${{ matrix.arch }}
# Always run these steps for https://github.com/wolfi-dev/os/issues/8698
Expand Down

0 comments on commit 53eca6e

Please sign in to comment.