diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 2765c1a..0d4f6a2 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -16,7 +16,7 @@ runs: uses: actions/cache@v3 with: path: ~/.cache/pip - key: python-pip + key: ${{ runner.os }}-pip - name: Install Pip and tox shell: bash run: | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90093ff..511ac09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,8 +48,8 @@ jobs: run: | set -e # Add a retry in case something bogus like a network failure happens - ./packerio build -var-file=${{ matrix.distro }} -var "qemu_accelerator=tcg" -except=upload sources || \ - ./packerio build -var-file=${{ matrix.distro }} -var "qemu_accelerator=tcg" -except=upload sources + ./packer build -var-file=${{ matrix.distro }} -var "qemu_accelerator=tcg" -except=upload sources || \ + ./packer build -var-file=${{ matrix.distro }} -var "qemu_accelerator=tcg" -except=upload sources env: VAGRANT_CLOUD_TOKEN: ${{ secrets.VAGRANT_CLOUD_TOKEN }} PACKER_LOG: ${{ contains(matrix.needs_timeout, matrix.distro) && '1' || '0' }}