diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32c5bc5..d50249d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,8 +19,7 @@ env: jobs: build: - # using ubuntu-24.04: Package 'qemu' has no installation candidate - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -44,7 +43,7 @@ jobs: - name: Prepare run: | - sudo apt-get update && sudo apt-get install -y qemu binfmt-support qemu-user-static + sudo apt-get update && sudo apt-get install -y qemu-system-arm binfmt-support qemu-user-static docker run --rm --privileged multiarch/qemu-user-static --reset -p yes echo "Running pyinstaller" @@ -71,6 +70,7 @@ jobs: mv artifacts/intg-denonavr artifacts/bin mv artifacts/bin/intg-denonavr artifacts/bin/driver cp driver.json artifacts/ + cp LICENSE artifacts/ echo "ARTIFACT_NAME=uc-intg-${{ env.INTG_NAME }}-${{ env.VERSION }}-aarch64" >> $GITHUB_ENV - name: Create upload artifact diff --git a/.github/workflows/python-code-format.yml b/.github/workflows/python-code-format.yml index 6f29bcb..dddd320 100644 --- a/.github/workflows/python-code-format.yml +++ b/.github/workflows/python-code-format.yml @@ -12,15 +12,15 @@ on: - 'pyproject.toml' - 'tox.ini' pull_request: - branches: [main] - types: [opened, synchronize, reopened] + branches: [ main ] + types: [ opened, synchronize, reopened ] permissions: contents: read jobs: test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 name: Check Python code formatting steps: