added: -y option to CI update
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 24s Details
release / release (push) Successful in 1m2s Details

This commit is contained in:
Sven Vogel 2024-07-05 15:06:11 +02:00
parent bf21b8c6e5
commit f30c0fe950
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ jobs:
- name: Install Typst CLI - name: Install Typst CLI
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
- name: Set up Python 3 - name: Set up Python 3
run: apt update && apt install python3-pip run: apt update -y && apt install python3-pip -y
- name: Run CI - name: Run CI
run: bash -c ./run-ci.sh run: bash -c ./run-ci.sh

View File

@ -15,7 +15,7 @@ jobs:
- name: Install Typst CLI - name: Install Typst CLI
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
- name: Set up Python 3 - name: Set up Python 3
run: apt update && apt install python3-pip run: apt update -y && apt install python3-pip -y
- name: Run CI - name: Run CI
run: bash -c ./run-ci.sh run: bash -c ./run-ci.sh
- name: Setup go - name: Setup go