Copy kernels in place

pull/25/head
probonopd 2 years ago committed by GitHub
parent b924df4464
commit 1fa4500e49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/build.yml

@ -50,7 +50,6 @@ jobs:
run: |
set -ex
export PATH=$(readlink -f ./gcc-*aarch64-none*/bin/):$PATH
cp ./kernels/* ./circle-stdlib/libs/circle/boot/ || true
cd ./circle-stdlib/libs/circle/boot
make
make armstub64
@ -61,6 +60,7 @@ jobs:
rm -rf sdcard/config32.txt sdcard/README sdcard/Makefile sdcard/armstub sdcard/COPYING.linux
cp ./src/*img sdcard/
cd sdcard
cp ../../../../kernels/* ./circle-stdlib/libs/circle/boot/ || true
zip -r ../MiniDexed_$(date +%Y-%m-%d).zip *
- name: Upload to GitHub Releases (only when building from main branch)
if: ${{ github.ref == 'refs/heads/main' }}

Loading…
Cancel
Save