summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhondew <pokehondew@gmail.com>2021-03-15 00:33:05 -0400
committerhondew <pokehondew@gmail.com>2021-03-15 00:33:05 -0400
commitb2732f46318cb0061c65c1c5ef083963dcdd4df7 (patch)
tree42119a1a1aa406c30b17982a61d045fffdf57167
parent5156636c2bb46c34c2dd0f97fd2ffb9ed9790dc9 (diff)
Retry build fix
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6c5bade0..4e0f34ea 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,13 +18,13 @@ jobs:
- name: Update and Install Software
run: |
sudo apt update
- sudo ACCEPT_EULA=Y apt -y --fix-missing upgrade --allow-downgrade
- sudo apt -y install g++-8-multilib linux-libc-dev binutils-arm-none-eabi
+ sudo ACCEPT_EULA=Y apt -y --fix-missing --allow-downgrades upgrade
+ sudo apt -y --allow-downgrades install g++-8-multilib linux-libc-dev binutils-arm-none-eabi
sudo dpkg --add-architecture i386
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport
sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu $(lsb_release -cs) main"
- sudo apt install --install-recommends winehq-stable
+ sudo apt -y --allow-downgrades install --install-recommends winehq-stable
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Repo