Merge pull request #492 from NASA-Openscapes/update-quarto-publish-ve… #341
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: main | |
| name: Quarto Publish | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/boettiger-lab/nasa-tops:latest | |
| options: --user root --security-opt seccomp=unconfined | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Quarto-inside-docker permissions | |
| run: git config --system --add safe.directory '*' | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| # Update quarto as the version in the image is old | |
| - name: Install Quarto | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Render and Publish | |
| if: github.repository == 'NASA-Openscapes/earthdata-cloud-cookbook' | |
| uses: quarto-dev/quarto-actions/publish@v2 | |
| with: | |
| target: gh-pages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |