Skip to content

Commit

Permalink
v9.5
Browse files Browse the repository at this point in the history
- CI | Quartz64: Writing to "$GITHUB_ENV" does not seem to override variables for the current step.
  • Loading branch information
MichaIng committed Jun 2, 2024
1 parent 114da56 commit 3848cbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/quartz64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
uboot_version=$(curl -sSf 'https://api.github.com/repos/u-boot/u-boot/tags' | mawk -F\" '/^ *"name": "v[0-9.]*",$/{print $4;exit}')
[ "$uboot_version" ] || { echo 'ERROR: Failed to obtain latest U-Boot version'; exit 1; }
{ curl -fLO "https://github.com/u-boot/u-boot/archive/$uboot_version.tar.gz"; tar xf "$uboot_version.tar.gz"; rm "$uboot_version.tar.gz"; } &
echo "uboot_version=${uboot_version#v}" >> "$GITHUB_ENV"
uboot_version=${uboot_version#v}
echo "uboot_version=$uboot_version" >> "$GITHUB_ENV"
wait
curl -sSfo "u-boot-$uboot_version/ddr.bin" 'https://raw.githubusercontent.com/JeffyCN/mirrors/ddf03c1/bin/rk35/rk3568_ddr_1560MHz_v1.13.bin' &
curl -sSfo "u-boot-$uboot_version/bl31.elf" 'https://raw.githubusercontent.com/JeffyCN/mirrors/6186deb/bin/rk35/rk3568_bl31_v1.28.elf' &
Expand Down

0 comments on commit 3848cbd

Please sign in to comment.