Invoke correct binary

This commit is contained in:
Greg Hellings
2022-06-01 00:24:47 -05:00
parent 3e26a51062
commit 46dbcf20c2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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: |
+2 -2
View File
@@ -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' }}