Skip to content

Commit

Permalink
change yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchobben committed Mar 11, 2024
1 parent 36e3808 commit 065f5c4
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
cd ./inst/irods_demo
git submodule sync --recursive
git submodule update --init --force --recursive --remote
head -n 65 docker-compose.yml > temp.yml
mv temp.yml docker-compose.yml
rm temp.yml
docker compose up -d nginx-reverse-proxy irods-client-http-api irods-client-icommands
- uses: r-lib/actions/setup-pandoc@v2
Expand Down Expand Up @@ -69,22 +72,16 @@ jobs:
devtools::load_all(".")
source("pkgdown/pre-reference.R")
devtools::install()
print(rirods:::irods_images_ref())
print(rirods:::check_docker())
print(rirods:::check_irods_images())
print(rirods:::irods_containers_ref())
print(rirods:::is_irods_demo_running_())
print(rirods:::is_irods_demo_running())
Sys.setenv(R_USER_CONFIG_DIR = tempdir())
# - name: Build site
# run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
# shell: Rscript {0}
- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}

# - name: Deploy to GitHub pages 🚀
# if: github.event_name != 'pull_request'
# uses: JamesIves/github-pages-deploy-action@v4.4.1
# with:
# clean: false
# branch: gh-pages
# folder: docs
- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
clean: false
branch: gh-pages
folder: docs

0 comments on commit 065f5c4

Please sign in to comment.