Skip to content

Commit

Permalink
Reverting change to website deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-long committed Jul 28, 2024
1 parent 64bd43a commit 45edf27
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 11 deletions.
43 changes: 34 additions & 9 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
on:
push:
branches: [main, master]
tags: ['*']
pull_request:
branches: [main, master]
release:
Expand Down Expand Up @@ -37,14 +38,38 @@ jobs:
extra-packages: any::pkgdown, local::.
needs: website

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
- name: Install package
run: R CMD INSTALL .

- name: Build and deploy pkgdown site
if: contains(env.isPush, 'true')
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'
- name: Create website
if: contains(env.isPush, 'false')
run: |
pkgdown::build_site()
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]

- name: Create index file
if: contains(env.isPush, 'false')
run: |
echo '<!DOCTYPE html><html><head><meta http-equiv="refresh" content="0;URL=/dev/index.html" /> <script language="javascript"> window.location.replace('/dev/index.html')</script></head></html>' > ./docs/index.html
- name: Deploy to Netlify
if: contains(env.isPush, 'false')
id: netlify-deploy
uses: nwtgck/[email protected]
with:
clean: false
branch: gh-pages
folder: docs
publish-dir: './docs'
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message:
'Deploy from GHA: ${{ github.event.pull_request.title || github.event.head_commit.message }} (${{ github.sha }})'
# these all default to 'true'
enable-pull-request-comment: false
enable-commit-comment: false
# enable-commit-status: true
#o verwrites-pull-request-comment: true
timeout-minutes: 1
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

## Warning: le package 'jtools' a été compilé avec la version R 4.3.3

# interactions <img src="man/figures/logo.png" alt="interactions" height="250px" align="right" />

<!-- badges: start -->
Expand Down

0 comments on commit 45edf27

Please sign in to comment.