From cf228cc746f8598a2c76679e89819d76aa6c80e1 Mon Sep 17 00:00:00 2001 From: Mutzi Date: Sun, 28 May 2023 14:20:30 +0200 Subject: [PATCH] Fix CI --- .gitea/workflows/build.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index aab498a..38daa21 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -9,6 +9,7 @@ jobs: container: image: rust:bullseye steps: + - run: apt-get install git -y - uses: actions/checkout@v3 - name: Build run: cargo build --release @@ -21,12 +22,12 @@ jobs: build-muslc: name: Build backend-muslc runs-on: 'docker' - contianer: + container: image: rust:alpine steps: - - uses: actions/checkout@v3 - name: Install dependencies - run: apk add pkgconf musl-dev + run: apk add pkgconf musl-dev git + - uses: actions/checkout@v3 - name: Build run: cargo build --release working-directory: backend @@ -41,6 +42,7 @@ jobs: container: image: node:current-alpine steps: + - run: apk add git - uses: actions/checkout@v3 - name: Install packages run: yarn install --frozen-lockfile