Skip to content

Commit

Permalink
Update rockchip.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wukongdaily authored Dec 7, 2024
1 parent caaed26 commit 32d41a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rockchip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- name: Locate firmware file
id: locate_file
run: |
firmware_file=$(find "${{ github.workspace }}/bin" -name '*squashfs-combined-efi.img.gz' | head -n 1)
echo "Firmware file located at $firmware_file"
echo "firmware_path=$firmware_file" >> $GITHUB_ENV
firmware_file=$(ls "${{ github.workspace }}/bin" | grep 'squashfs' | head -n 1)
echo "Firmware file located at ${{ github.workspace }}/bin/$firmware_file"
echo "firmware_path=${{ github.workspace }}/bin/$firmware_file" >> $GITHUB_ENV
- name: Upload firmware
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 32d41a6

Please sign in to comment.