-
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.
- Loading branch information
1 parent
19bfe6d
commit 68d7c6e
Showing
14 changed files
with
905 additions
and
18 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,7 @@ | ||
# jira ticket | ||
|
||
https://dereckmezquita.atlassian.net/browse/<TICKET-ID> | ||
|
||
# todo list | ||
|
||
- [ ] Version bump |
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,36 @@ | ||
name: pkgdown | ||
on: push | ||
permissions: | ||
contents: write | ||
jobs: | ||
main: | ||
name: Build and publish website | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install pandoc | ||
uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- name: Install R | ||
uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- name: Install R package dependencies | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
|
||
- name: Configure git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Deploy to branch | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
shell: Rscript {0} | ||
run: pkgdown::deploy_to_branch(branch = "bot/github-pages") |
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
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,5 @@ | ||
```bash | ||
Rscript -e "devtools::document()" | ||
Rscript -e "devtools::check()" | ||
Rscript -e "devtools::install()" | ||
``` |
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 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(LogLevel) | ||
export(Logger) |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,38 @@ | ||
template: | ||
bootstrap: 5 | ||
|
||
url: https://dereckmezquita.github.io/R-Logger/ | ||
|
||
authors: | ||
Dereck Mezquita: | ||
href: https://derecksnotes.com | ||
|
||
navbar: | ||
structure: | ||
left: [home, reference, articles, donate] | ||
right: [github, youtube, search, website, website2] | ||
components: | ||
articles: | ||
text: Articles | ||
menu: | ||
- text: "Getting Started with Logger" | ||
href: articles/getting-started-Logger.html | ||
donate: | ||
text: Donate | ||
href: articles/donate.html | ||
github: | ||
icon: fa-github fa-lg | ||
href: https://github.com/dereckmezquita/R-Logger | ||
target: _blank | ||
youtube: | ||
icon: fa-youtube fa-lg | ||
href: https://www.youtube.com/@derecksyoutube | ||
target: _blank | ||
website: | ||
text: derecksprojects.com | ||
href: https://derecksprojects.com | ||
target: _blank | ||
website2: | ||
text: derecksnotes.com | ||
href: https://derecksnotes.com | ||
target: _blank |
Oops, something went wrong.