Skip to content

Commit

Permalink
Revert to some parts of the old action
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksanderbl29 committed Nov 25, 2024
1 parent dfdf971 commit c5e96cd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
fail-fast: true
matrix:
config:
- {os: macos-latest, r: 'release'}
Expand Down
34 changes: 15 additions & 19 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ name: rogtemplate-gh-pages
jobs:
rogtemplate-gh-pages:
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2
Expand All @@ -30,23 +35,14 @@ jobs:
needs: website

- name: Build logo if not present and prepare template
run: |
# Check that logo is not present
if (isFALSE(file.exists(file.path("man", "figures", "logo.png")) ||
file.exists(file.path("man", "figures", "logo.png")))) {
rogtemplate::rog_logo()
} else {
message("The package already has a logo")
}
rogtemplate::rog_add_template_pkgdown()
- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}

- name: Deploy package
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: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]
with:
clean: false
branch: gh-pages
folder: docs

0 comments on commit c5e96cd

Please sign in to comment.