Skip to content

Commit

Permalink
actions: use only env variables (fixes #49) (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogi authored Jul 24, 2024
1 parent d8145e2 commit 2ee131f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
cp repository/src/workspace-raspios_lite_arm64/*.img $IMAGE.img
gzip $IMAGE.img
sync; sync; sync
echo "::set-output name=image::$IMAGE"
echo "OUTPUT=$IMAGE" >> $GITHUB_ENV
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ steps.copy.outputs.image }}
path: ${{ steps.copy.outputs.image }}.img.gz
name: ${{ env.OUTPUT }}
path: ${{ env.OUTPUT }}.img.gz

0 comments on commit 2ee131f

Please sign in to comment.