Skip to content

fixed the GHA, tired #91

fixed the GHA, tired

fixed the GHA, tired #91

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
name: Quarto Publish
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
# From https://github.com/r-lib/actions/tree/v2-branch/setup-r
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.3.1'
- name: Install R package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
packages: |
any::DT
any::ggplot2
any::remotes
any::curl
any::jsonlite
- name: Install package from GH
run: |
Rscript -e 'remotes::install_github("ruralinnovation/cori.fcc")'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Install R Dependencies
# uses: r-lib/actions/setup-renv@v2
# with:
# cache-version: 1
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Print GITHUB_TOKEN
# run: echo ${{ secrets.GITHUB_TOKEN }}
- name: Print GITHUB_WORKSPACE
run: echo ${GITHUB_WORKSPACE}
- name: List outputs after render
run: |
ls -l "${GITHUB_WORKSPACE}/"