We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 236d72a commit ebd83a6Copy full SHA for ebd83a6
1 file changed
.github/workflows/publish.yml
@@ -59,9 +59,17 @@ jobs:
59
run: Rscript .github/install_packages.R
60
61
- name: Install marketconf from GitHub
62
+ env:
63
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
64
run: |
- Rscript -e "remotes::install_github('EnriquePH/marketconf@master', \
- upgrade = 'never', quiet = TRUE)"
65
+ Rscript -e "
66
+ remotes::install_github(
67
+ 'EnriquePH/marketconf@master',
68
+ auth_token = Sys.getenv('GITHUB_PAT'),
69
+ upgrade = 'never',
70
+ quiet = TRUE
71
+ )
72
+ "
73
74
- name: Setup Python
75
uses: actions/setup-python@v5
0 commit comments