From f30c0fe9501bff38159d5df1f3f5314698a851f9 Mon Sep 17 00:00:00 2001 From: Sven Vogel Date: Fri, 5 Jul 2024 15:06:11 +0200 Subject: [PATCH] added: -y option to CI update --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 41952cd..14f897c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,6 +14,6 @@ jobs: - name: Install Typst CLI run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" - name: Set up Python 3 - run: apt update && apt install python3-pip + run: apt update -y && apt install python3-pip -y - name: Run CI run: bash -c ./run-ci.sh diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index a59efb3..39496c8 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Install Typst CLI run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" - name: Set up Python 3 - run: apt update && apt install python3-pip + run: apt update -y && apt install python3-pip -y - name: Run CI run: bash -c ./run-ci.sh - name: Setup go