Skip to content

Commit

Permalink
opt path in publish
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleSoraggi committed Mar 6, 2024
1 parent 7c999ff commit dd2871a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:

- name: Download Quarto on Linux
if: runner.os == 'Linux'
run: wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.450/quarto-1.3.450-linux-amd64.tar.gz
run: wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.450/quarto-1.3.450-linux-amd64.tar.gz -P /opt/

- name: Unzip Quarto on Linux
if: runner.os == 'Linux'
run: tar -xvf quarto-1.3.450-linux-amd64.tar.gz
run: tar -xvf /opt/quarto-1.3.450-linux-amd64.tar.gz

- name: Check out repository
uses: actions/checkout@v4

- name: Unzip Quarto on Linux
if: runner.os == 'Linux'
run: quarto-1.3.450/bin/quarto publish gh-pages
run: /opt/quarto-1.3.450/bin/quarto publish gh-pages

# - name: Set up Quarto
# uses: quarto-dev/quarto-actions/setup@v2
Expand Down

0 comments on commit dd2871a

Please sign in to comment.