Merge pull request #21 from espm-157/main #61
This file contains 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 | |
# - name: Set up Quarto | |
# uses: quarto-dev/quarto-actions/setup@v2 | |
- name: update dependencies | |
run: python -m pip install -r .devcontainer/requirements.txt | |
- name: Render and Publish | |
if: github.repository == 'boettiger-lab/nasa-topst-env-justice' | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |