We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ff36a2 commit 9cd4727Copy full SHA for 9cd4727
1 file changed
.github/workflows/generate-workspace.yaml
@@ -45,11 +45,13 @@ jobs:
45
"Infant",
46
"SleepDeprivation"
47
)
48
- save(list = iscamdata, file = "inst/extdata/ISCAM.RData")
+ save(list = iscamdata, file = "docs/ISCAM.RData")
49
shell: Rscript {0}
50
51
- - name: Upload RData artifact
52
- uses: actions/upload-artifact@v4
53
- with:
54
- name: iscam-workspace
55
- path: inst/extdata/ISCAM.RData
+ - name: Deploy site
+ run: |
+ git config --global user.name "${{ github.actor }}"
+ git config --global user.email "${{ github.actor }}@users.noreply.github.com"
+ git add docs
56
+ git commit -m "Build and deploy pkgdown site [ci skip]" || exit 0
57
+ git push
0 commit comments