diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index 23a7da2..5155493 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -15,15 +15,15 @@ jobs: - name: Update and install build tools and deps run: | - bash -c "apt update && apt upgrade -y" - apt install -y build-essential nasm mtools fdisk dosfstools + sudo bash -c "apt update && apt upgrade -y" + sudo apt install -y build-essential nasm mtools fdisk dosfstools - name: Build stevia run: make - name: Upload build artifacts if: always() # still keep logs/artifacts even if build fails - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: stevia-${{ github.run_number }} path: | @@ -31,4 +31,5 @@ jobs: build/output/disk.img.gz build/output/part.img.gz if-no-files-found: error - retention-days: 7 # override server default if you like \ No newline at end of file + retention-days: 7 # override server default if you like + \ No newline at end of file