Skip to content

Commit

Permalink
Maybe fix image upload path
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Dec 21, 2023
1 parent a8f8c8b commit b704d42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
run: |
export IMAGE=photonvision_$(git describe --tags --match=v*)_${{ matrix.name }}.img
mv ${{ steps.install_deps.outputs.image }} $RUNNER_TEMP/$IMAGE
tar -cJf $RUNNER_TEMP/$IMAGE.tar.xz $RUNNER_TEMP/$IMAGE
tar -cJf $IMAGE.tar.xz $RUNNER_TEMP/$IMAGE
- uses: actions/upload-artifact@master
with:
name: photon-image-${{ matrix.name }}
path: $RUNNER_TEMP/*.tar.xz
path: *.tar.xz

0 comments on commit b704d42

Please sign in to comment.