Skip to content

Commit

Permalink
Debugging paths during build process for R docs
Browse files Browse the repository at this point in the history
  • Loading branch information
silicontwin committed Sep 26, 2024
1 parent 6783764 commit 4e46281
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/generated-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
path: 'stochtree-repo'
submodules: 'recursive'

# Verify Makevars in Source
- name: List Contents of stochtree-repo/src
run: |
ls -la stochtree-repo/src
# Build Python Documentation
- name: Setup Python 3.10
uses: actions/setup-python@v5
Expand Down Expand Up @@ -78,13 +83,24 @@ jobs:
- name: Create stochtree_cran Directory and Copy Files
working-directory: stochtree-repo/R
run: |
set -e
mkdir -p stochtree_cran/src
cp ../src/Makevars stochtree_cran/src/Makevars
cp ../DESCRIPTION stochtree_cran/
cp ../cran-bootstrap.R stochtree_cran/
cp ../_pkgdown.yml stochtree_cran/
cp ../R_README.md stochtree_cran/README.md
- name: List Contents of stochtree_cran/src
working-directory: stochtree-repo/R
run: |
ls -la stochtree_cran/src
- name: List Contents of stochtree_cran
working-directory: stochtree-repo/R
run: |
ls -la stochtree_cran
- name: Run cran-bootstrap.R
working-directory: stochtree-repo/R/stochtree_cran
run: |
Expand Down

0 comments on commit 4e46281

Please sign in to comment.