We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33cb5c commit 8e9ae56Copy full SHA for 8e9ae56
.github/actions/bootc-ubuntu-setup/action.yml
@@ -75,6 +75,8 @@ runs:
75
- name: Install libvirt and virtualization stack
76
if: ${{ inputs.libvirt == 'true' }}
77
shell: bash
78
+ env:
79
+ GH_TOKEN: ${{ github.token }}
80
run: |
81
set -xeuo pipefail
82
export BCVK_VERSION=0.6.0
@@ -83,9 +85,9 @@ runs:
83
85
echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV
84
86
td=$(mktemp -d)
87
cd $td
- # Install bcvk
88
+ # Install bcvk from PR 159
89
+ gh run download 19640807620 --name bcvk-binary --repo bootc-dev/bcvk
90
target=bcvk-$(arch)-unknown-linux-gnu
- /bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
91
tar xzf ${target}.tar.gz
92
sudo install -T ${target} /usr/bin/bcvk
93
cd -
0 commit comments