keep previous assets for reference #39
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
name: Next.js Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- 'dev/**' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Print GITHUB_TOKEN | |
run: echo ${{ secrets.GITHUB_TOKEN }} | |
- name: Print GITHUB_WORKSPACE | |
run: echo ${GITHUB_WORKSPACE} | |
- name: Print working directory | |
run: echo $(pwd) | |
- 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::quarto | |
any::renv | |
any::rmarkdown | |
# - name: Install R dependencies with renv | |
# uses: r-lib/actions/setup-renv@v2 | |
# with: | |
# cache-version: 1 | |
- name: Setup Node.js | |
uses: ./.github/workflows/node.js | |
- name: Build with Next.js | |
run: npm run build | |
- name: List build outputs | |
run: ls -lA ./out |