Skip to content

Commit

Permalink
ci: Download docker directly
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Nov 5, 2024
1 parent 5bb148f commit 886e8ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/flatpak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ jobs:
restore: cache-restored
steps:
- uses: actions/checkout@v4
- name: Install QEMU deps
- name: Set up docker
if: ${{ matrix.arch != 'x86_64' }}
run: |
dnf -y install docker
curl https://download.docker.com/linux/static/stable/aarch64/docker-27.3.1.tgz --output docker.tgz
tar xzvf docker.tgz
chmod -R +x docker
mv docker/* /usr/bin
- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' }}
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 886e8ac

Please sign in to comment.