From 4b96cfd12d934f199a65926a9676106ab8c21695 Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 25 Nov 2022 21:43:12 -0500 Subject: [PATCH] fix apt scripts --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f3820dc..757d304 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,10 +13,10 @@ jobs: steps: - name: update git run: | - apt-get install -y software-properties-common \ - apt-get update \ - add-apt-repository -y ppa:git-core/ppa \ - apt-get update \ + apt-get install -y software-properties-common + apt-get update + add-apt-repository -y ppa:git-core/ppa + apt-get update apt-get install -y git - name: checkout uses: actions/checkout@v3