Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:
matrix:
config:
- {os: macos-latest, r: 'release'}

environment: CI_config
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
API_USGS_PAT: ${{ secrets.API_USGS_PAT }}
R_KEEP_PKG_SOURCE: yes

steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ jobs:
# Only restrict concurrency for non-PR jobs
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
environment: CI_config
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
API_USGS_PAT: ${{ secrets.API_USGS_PAT }}
steps:
- uses: actions/checkout@581d62f320f2a4043a1ea6ac77290c60d27485cc

Expand Down Expand Up @@ -57,6 +59,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
API_USGS_PAT: ${{ secrets.API_USGS_PAT }}
runs-on: ubuntu-latest
needs: pkgdown
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ name: test-coverage
jobs:
test-coverage:
runs-on: macOS-latest

environment: CI_config
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
API_USGS_PAT: ${{ secrets.API_USGS_PAT }}
R_KEEP_PKG_SOURCE: yes
CUSTOM_DR_UA: 'GitHub_CI'

Expand Down
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ variables:
NOT_CRAN: "true"
CONNECT_API_KEY: $CONNECT_API_KEY
CONNECT_SERVER: $CONNECT_SERVER
API_USGS_PAT: $API_USGS_PAT
PAGES_OUTDIR: "$CI_PROJECT_DIR/public"

build-image:
Expand Down
Loading