fix app filter screenshot placement #17
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 | |
paths: | |
- 'adrg/_adrg.qmd' | |
name: Quarto Publish ADRG | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
tinytex: true | |
- name: Install font dependencies | |
id: install-fonts | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: fonts-dejavu-core fonts-dejavu-extra | |
version: 1.0 | |
- name: Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.2.3' | |
- name: Install R Dependencies | |
uses: r-lib/actions/setup-renv@v2 | |
with: | |
cache-version: 1 | |
- name: Render ADRG PDF (custom) | |
env: | |
QUARTO_PRINT_STACK: true | |
run: | | |
quarto render adrg/adrg-quarto-pdf.qmd --to pdf | |
shell: bash | |
- name: Publish ADRG HTML version to Quarto Pub | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: quarto-pub | |
path: adrg/adrg-quarto-html.qmd | |
QUARTO_PUB_AUTH_TOKEN: ${{ secrets.QUARTO_PUB_AUTH_TOKEN }} | |
- name: Set up object storage s3cmd cli tool | |
uses: s3-actions/[email protected] | |
with: | |
provider: linode | |
region: 'us-east-1' | |
access_key: ${{ secrets.S3_ACCESS_KEY }} | |
secret_key: ${{ secrets.S3_SECRET_KEY }} | |
- name: Publish ADRG PDF version to Linode Object Storage | |
run: | | |
s3cmd put adrg/adrg-quarto-pdf.pdf --mime-type 'application/pdf' --acl-public s3://rsubmission-draft/adrg-quarto-pdf.pdf | |