File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 93
93
echo "image=$IMAGE" >> $GITHUB_OUTPUT
94
94
95
95
# artifact upload will take care of zipping for us
96
- - uses : actions/upload-artifact@v1
96
+ - uses : actions/upload-artifact@v3
97
97
with :
98
98
name : ${{ steps.copy.outputs.image }}
99
99
path : ${{ steps.copy.outputs.image }}.img
Original file line number Diff line number Diff line change 65
65
echo 'set -x' >> start_chroot_script
66
66
echo 'set -e' >> start_chroot_script
67
67
echo 'source /common.sh' >> start_chroot_script
68
+ echo 'type -p curl >/dev/null || apt install curl -y' >> start_chroot_script
69
+ echo 'curl -fsSL https://awawa-dev.github.io/hyperhdr.public.apt.gpg.key | dd of=/usr/share/keyrings/hyperhdr.public.apt.gpg.key \' >> start_chroot_script
70
+ echo '&& chmod go+r /usr/share/keyrings/hyperhdr.public.apt.gpg.key \' >> start_chroot_script
71
+ echo '&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hyperhdr.public.apt.gpg.key] https://awawa-dev.github.io $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/hyperhdr.list > /dev/null \' >> start_chroot_script
68
72
echo 'apt-get update' >> start_chroot_script
69
73
echo 'cd /tmp' >> start_chroot_script
70
74
echo 'wget ${{env.HYPERHDR_DEB}} -O hyperhdr.deb' >> start_chroot_script
94
98
echo "image=$IMAGE" >> $GITHUB_OUTPUT
95
99
96
100
# artifact upload will take care of zipping for us
97
- - uses : actions/upload-artifact@v1
101
+ - uses : actions/upload-artifact@v3
98
102
with :
99
103
name : ${{ steps.copy.outputs.image }}
100
104
path : ${{ steps.copy.outputs.image }}.img
Original file line number Diff line number Diff line change 39
39
- dockerImage : arm-64bit-aarch64
40
40
linuxVersion : bullseye
41
41
dockerName : Debian Bullseye (ARM 64-bit Raspberry Pi OS)
42
- platform : rpi
42
+ platform : rpi
43
+ - dockerImage : arm-32bit-armv6l
44
+ linuxVersion : bookworm
45
+ dockerName : Debian Bookworm (ARM 32-bit Raspberry Pi OS)
46
+ platform : rpi
47
+ - dockerImage : arm-64bit-aarch64
48
+ linuxVersion : bookworm
49
+ dockerName : Debian Bookworm (ARM 64-bit Raspberry Pi OS)
50
+ platform : rpi
43
51
- dockerImage : x86_64
44
52
linuxVersion : ArchLinux
45
53
dockerName : Arch Linux (x86_64)
You can’t perform that action at this time.
0 commit comments