Replace Install docker with a more sane way of doing it.

This commit is contained in:
Midou36O 2023-12-30 14:23:55 +01:00
parent bd9262550b
commit 578fde58e9
Signed by: midou
GPG Key ID: 1D134A95FE521A7A
1 changed files with 3 additions and 4 deletions

View File

@ -9,8 +9,9 @@ jobs:
name: 'Building the website'
runs-on: ubuntu-latest
steps:
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
# I'm growing desperate to find a way to pre-install docker in the container.
- name: Set up docker
uses: papodaca/install-docker-action@main
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
@ -32,5 +33,3 @@ jobs:
context: '.'
push: true
no-cache: true
secrets: |
GIT_AUTH_TOKEN=${{ secrets.ACCESS_TOKEN }}