Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
zyma98 committed Jun 19, 2024
1 parent 15e70fa commit 6484f60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/actions/prepare-qemu/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ runs:

- name: Download QEMU if not cached
if: steps.qemu-cache.outputs.cache-hit != 'true'
run: curl -L -o qemu.tar.xz 'https://zyma.me/media/qemu.tar.xz'
run: >
curl --fail -L
--cookie "authorized_cookie=${{ secrets.AUTHORIZED_DOWNLOAD_COOKIE }}"
-o qemu.tar.xz
'https://file.zyma.me/qemu.tar.xz'
shell: bash

- name: Decompress QEMU
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/actions/prepare-rust-toolchain/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ runs:

- name: Download Rust compiler toolchain if not cached
if: steps.rust-cache.outputs.cache-hit != 'true'
run: curl -L -o rust.tar.xz 'https://zyma.me/media/rust.tar.xz'
run: >
curl --fail -L
--cookie "authorized_cookie=${{ secrets.AUTHORIZED_DOWNLOAD_COOKIE }}"
-o rust.tar.xz
'https://file.zyma.me/rust.tar.xz'
shell: bash

- name: Decompress Rust compiler toolchain
Expand Down

0 comments on commit 6484f60

Please sign in to comment.