From e8e9001bafd3e22eeeef36b2c0832dd7053b3dd8 Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Tue, 24 Sep 2024 12:34:36 -0600 Subject: [PATCH] [build] Fix cross build after version change --- .github/workflows/cross.yml | 2 +- build.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index eb7c58610..212a8fcd8 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -43,7 +43,7 @@ jobs: - name: upload if: steps.cache.outputs.cache-hit != 'true' - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: cross path: cross diff --git a/build.sh b/build.sh index 8d3dc2ba9..baf37d4ce 100755 --- a/build.sh +++ b/build.sh @@ -36,8 +36,8 @@ if [ "$1" = "auto" ]; then echo "Invoking 'make defconfig'..." make defconfig || clean_exit 2 echo "Building IBM PC image..." - cp ibmpc-1440.config .config - #cp ibmpc-1440-nc.config .config + #cp ibmpc-1440.config .config + cp ibmpc-1440-nc.config .config else echo echo "Now invoking 'make menuconfig' for you to configure the system."