-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from StevenMMortimer/dev
[Release v1.0.2] Merge dev into main
- Loading branch information
Showing
214 changed files
with
19,815 additions
and
2,364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
name: Build pkgdown site | ||
|
||
permissions: read-all | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
|
@@ -9,25 +11,27 @@ on: | |
default: false | ||
push: | ||
branches: main | ||
|
||
jobs: | ||
pkgdown: | ||
|
||
runs-on: macOS-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 }} | ||
SALESFORCER_USERNAME: ${{ secrets.SALESFORCER_USERNAME }} | ||
SALESFORCER_TOKEN_PATH: ${{ github.workspace }}/tests/testthat/ | ||
|
||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Decrypt OAuth Token | ||
run: | | ||
./.github/scripts/decrypt_secret.sh | ||
env: | ||
SALESFORCER_TOKEN_PASSPHRASE: ${{ secrets.SALESFORCER_TOKEN_PASSPHRASE }} | ||
|
||
- name: Reveal env vars | ||
run: | | ||
echo GITHUB_WORKFLOW = $GITHUB_WORKFLOW | ||
|
@@ -40,49 +44,50 @@ jobs: | |
echo GITHUB_EVENT_PATH = $GITHUB_EVENT_PATH | ||
echo GITHUB_WORKSPACE = $GITHUB_WORKSPACE | ||
echo GITHUB_SHA = $GITHUB_SHA | ||
echo GITHUB_REF = $GITHUB_REF | ||
- uses: r-lib/actions/setup-r@v1 | ||
echo GITHUB_REF = $GITHUB_REF | ||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: 'release' | ||
|
||
- uses: r-lib/actions/setup-pandoc@v1 | ||
|
||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- name: Query dependencies | ||
run: | | ||
install.packages("remotes") | ||
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) | ||
shell: Rscript {0} | ||
|
||
- name: Cache R packages | ||
uses: actions/cache@v1 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.R_LIBS_USER }} | ||
key: macOS-r-4.0-2-${{ hashFiles('.github/depends.Rds') }} | ||
restore-keys: macOS-r-4.0-2- | ||
key: macOS-r-4.4-1-${{ hashFiles('.github/depends.Rds') }} | ||
restore-keys: macOS-r-4.4-1- | ||
|
||
- name: Install dependencies | ||
run: | | ||
remotes::install_deps(dependencies = TRUE) | ||
remotes::install_dev("pkgdown") | ||
shell: Rscript {0} | ||
|
||
- name: Session info | ||
run: | | ||
options(width = 100) | ||
pkgs <- installed.packages()[, "Package"] | ||
sessioninfo::session_info(pkgs, include_base = TRUE) | ||
shell: Rscript {0} | ||
|
||
- name: Install package | ||
run: R CMD INSTALL . | ||
|
||
- name: Deploy package | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' | ||
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' | ||
- name: Trigger next workflow | ||
if: ${{ (github.event_name != 'workflow_dispatch' && success()) || (github.event_name == 'workflow_dispatch' && github.event.inputs.trigger_next && success()) }} | ||
uses: peter-evans/repository-dispatch@v1 | ||
|
@@ -91,7 +96,7 @@ jobs: | |
repository: StevenMMortimer/salesforcer | ||
event-type: main-02-test-coverage | ||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | ||
|
||
- name: Set final R-CMD-check status | ||
if: ${{ (github.event_name != 'workflow_dispatch' && failure()) }} | ||
uses: peter-evans/repository-dispatch@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.