From cebecd027216c3b3b62766140affd5347435ba6c Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 9 Apr 2024 13:06:21 -0500 Subject: [PATCH] Add notes about tokens used in publish workflow --- .github/workflows/publish.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 431f936..3f38fab 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,6 +27,9 @@ jobs: uses: quarto-dev/quarto-actions/publish@v2 with: target: netlify + # NETLIFY_AUTH_TOKEN is a personal access token generated at + # https://app.netlify.com/user/applications, and it expires + # after an interval. NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} # Publish on Quarto.pub (https://x-cite.quarto.pub/). @@ -34,4 +37,6 @@ jobs: uses: quarto-dev/quarto-actions/publish@v2 with: target: quarto-pub + # QUARTO_PUB_AUTH_TOKEN is generated at + # https://quartopub.com/profile. QUARTO_PUB_AUTH_TOKEN: ${{ secrets.QUARTO_PUB_AUTH_TOKEN }}