-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating SV and main fredi data scripts
- Loading branch information
1 parent
b0d51b7
commit 0ecab48
Showing
53 changed files
with
439,116 additions
and
1,678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Render documents and upload | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'inst/extdata/**' | ||
|
||
jobs: | ||
render_document: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: r-lib/actions/setup-r@v2 | ||
- name: Install packages | ||
run: | | ||
Rscript -e 'install.packages("tidyverse")' | ||
Rscript -e 'install.packages("openxlsx")' | ||
Rscript -e 'install.packages("devtools")' | ||
- name: Run createsystemData | ||
run: source("createsystemData_main.R") | ||
run: source("createsystemData_sv.R") | ||
- name: Commit results | ||
run: | | ||
git config --local core.autocrlf false | ||
git config --local user.email "${{ github.actor }}@users.noreply.github.com" | ||
git config --local user.name "${{ github.actor }}" | ||
git add data/sysdata** | ||
git pull origin ${{ github.head_ref }} --autostash --rebase -X ours | ||
git commit -a -m "update systemdata" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata |
Oops, something went wrong.