Skip to content

Commit

Permalink
Update website to match rOpenSpain
Browse files Browse the repository at this point in the history
  • Loading branch information
llrs committed Sep 27, 2023
1 parent 3be3c28 commit 4341119
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.html
R-version
depends.Rds
47 changes: 47 additions & 0 deletions .github/workflows/rostemplate-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
tags: ['*']

name: rostemplate-docs

jobs:
rostemplate-docs:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
ESIOS_TOKEN: ${{ secrets.ESIOS_TOKEN }}
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages:
local::.
any::pkgdown
ropenspain/rostemplate
any::ggplot2
needs: website

- name: Deploy package
run: |
Rscript -e 'pkgdown::clean_site()'
Rscript -e 'pkgdown::build_site(new_process = FALSE)'
- name: Commit results
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m 'Build pkgdown' || echo "No changes to commit"
git push origin || echo "No changes to commit"
39 changes: 39 additions & 0 deletions .github/workflows/rostemplate-gh-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
tags: ['*']

name: rostemplate-gh-pages

jobs:
rostemplate-gh-pages:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
ESIOS_TOKEN: ${{ secrets.ESIOS_TOKEN }}
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages:
local::.
any::pkgdown
ropenspain/rostemplate
any::ggplot2
needs: website

- name: Deploy package
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
url: https://llrs.github.io/resios/
template:
package: rostemplate
bootstrap: 5
authors:
Lluís Revilla Sancho:
Expand Down

0 comments on commit 4341119

Please sign in to comment.