Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

Commit

Permalink
fix docker install step
Browse files Browse the repository at this point in the history
  • Loading branch information
thorion3006 committed Aug 10, 2021
1 parent 42ee2fe commit b808a5a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/font_patcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,13 @@ jobs:
fetch-depth: 0
- name: Install docker
run: |
sudo apt remove docker docker-engine docker.io;
sudo apt install docker.io -y;
sudo apt-get remove docker docker-engine docker.io containerd runc;
sudo apt-get update;
sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release;
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg;
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null;
sudo apt-get update;
sudo apt-get install docker-ce docker-ce-cli containerd.io;
sudo systemctl enable --now docker:
- name: Download and patch fonts
run: |
Expand Down

0 comments on commit b808a5a

Please sign in to comment.