Skip to content

Commit

Permalink
Slightly better chances of working...
Browse files Browse the repository at this point in the history
  • Loading branch information
jhollist committed Dec 29, 2021
1 parent a977732 commit a3415fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ jobs:
shell: Rscript {0}

- name: Set API key
env:
OPENTOPO_KEY: ${{ secrets.OPENTOPO }}
run: |
cat(paste0("OPENTOPO_KEY=", OPENTOPO, "\n"), file = paste0(normalizePath("~/"), "/.Renviron"), append = TRUE)
cat(paste0("OPENTOPO_KEY=", Sys.getenv("OPENTOPO_KEY")", "\n"), file = paste0(normalizePath("~/"), "/.Renviron"), append = TRUE)
shell: Rscript {0}

- name: Check
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
shell: Rscript {0}

- name: Set API key
env:
OPENTOPO_KEY: ${{ secrets.OPENTOPO }}
run: |
cat(paste0("OPENTOPO_KEY=", OPENTOPO, "\n"), file = paste0(normalizePath("~/"), "/.Renviron"), append = TRUE)
cat(paste0("OPENTOPO_KEY=", Sys.getenv("OPENTOPO_KEY")", "\n"), file = paste0(normalizePath("~/"), "/.Renviron"), append = TRUE)
shell: Rscript {0}

- name: Test coverage
Expand Down

0 comments on commit a3415fb

Please sign in to comment.