Skip to content

Commit

Permalink
Make secrets available to action step pt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
camille-s committed Apr 18, 2024
1 parent c8b0370 commit fcd4f9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
GGMAP_STADIAMAPS_API_KEY: ${{ secrets.GGMAP_STADIAMAPS_API_KEY }}
# run r code
run: |
R -e 'ggmap::register_google(key = ${{ GGMAP_GOOGLE_API_KEY }}, write = TRUE)'
R -e 'ggmap::register_stadiamaps(key = ${{ GGMAP_STADIAMAPS_API_KEY }}, write = TRUE)'
R -e 'ggmap::register_google(key = $GGMAP_GOOGLE_API_KEY, write = TRUE)'
R -e 'ggmap::register_stadiamaps(key = $GGMAP_STADIAMAPS_API_KEY, write = TRUE)'
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
Expand Down

0 comments on commit fcd4f9a

Please sign in to comment.