We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245a4d9 commit ddc6413Copy full SHA for ddc6413
.github/workflows/deploy.yml
@@ -20,14 +20,12 @@ jobs:
20
key: quarto-v1
21
22
# Install Quarto only if not cached
23
- - name: Install Quarto
+ - name: Install Quarto
24
run: |
25
- if [ ! -f /opt/quarto/bin/quarto ]; then
+ if ! command -v quarto &> /dev/null; then
26
wget https://quarto.org/download/latest/quarto-linux-amd64.deb
27
sudo dpkg -i quarto-linux-amd64.deb
28
- sudo mv /usr/local/bin/quarto /opt/quarto/bin/quarto
29
fi
30
- echo "/opt/quarto/bin" >> $GITHUB_PATH
31
32
# Cache TinyTeX installation
33
- name: Cache TinyTeX
0 commit comments