Skip to content

Commit

Permalink
fine, don't mask the cal URL
Browse files Browse the repository at this point in the history
  • Loading branch information
rpodcast committed Jan 3, 2024
1 parent a4e514d commit cc1565c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/build-dash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,6 @@ jobs:

- uses: r-lib/actions/setup-renv@v2

- name: Create and populate .Renviron file
run: |
echo CALDAV_URL="$CALDAV_URL" >> ~/.Renviron
echo NEXTCLOUD_USER="$NEXTCLOUD_USER" >> ~/.Renviron
echo NEXTCLOUD_PASSWORD="$NEXTCLOUD_PASSWORD" >> ~/.Renviron
shell: bash
env:
CALDAV_URL: ${{ secrets.CALDAV_URL }}
NEXTCLOUD_USER: ${{ secrets.NEXTCLOUD_USER }}
NEXTCLOUD_PASSWORD: ${{ secrets.NEXTCLOUD_PASSWORD }}

- name: Cache targets data
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion R/get_cal_data.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
get_cal_data <- function() {
cal_data <-
caldav::caldav_get_all_simple_auth(
url = Sys.getenv("CALDAV_URL"),
url = "https://nextcloud.rweekly.org/remote.php/dav/calendars/admin/curation-schedule/",
user = Sys.getenv("NEXTCLOUD_USER"),
password = Sys.getenv("NEXTCLOUD_PASSWORD")
)
Expand Down

0 comments on commit cc1565c

Please sign in to comment.