commit acecffff1e0516116ad37dc352a71863eeededad parent d7dd0c47b95a127988dfcc45530b691624b07de3 Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 14 Nov 2024 01:55:51 +0100 Dont use a mirror Diffstat:
| M | .github/workflows/build.yaml | | | 10 | ++++++++-- |
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml @@ -14,7 +14,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install texlive - run: sudo apt install -y texlive-full + run: | + sudo sed -i 's/azure\.//' /etc/apt/sources.list + sudo apt-get update + sudo apt install -y texlive-full - uses: actions/setup-java@v4 with: distribution: 'graalvm' # See 'Supported distributions' for available options @@ -39,7 +42,10 @@ jobs: - name: Compile arara run: ./compile.sh - name: Install texlive - run: sudo apt install -y libreoffice pandoc texlive-full + run: | + sudo sed -i 's/azure\.//' /etc/apt/sources.list + sudo apt-get update + sudo apt install -y libreoffice pandoc texlive-full - name: Compile LaTeX document run: ./build.sh - name: Build markdown