From 147fce6f76651c9963d7ba459333439f9d99c80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:26:25 +0300 Subject: [PATCH 1/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 77e8de69..7a8e2540 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,6 +1,6 @@ -on: - push: - branches: master +# on: +# push: +# branches: master name: Pkgdown From 3135c8de5f37b05a2d5353c3e7ffa6568b1d56c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:27:52 +0300 Subject: [PATCH 2/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 7a8e2540..a5e56b86 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,6 +1,6 @@ -# on: -# push: -# branches: master + on: + push: + branches: master name: Pkgdown From 7c5efbb7464543e0a6bed1d94329f00ac7a5847c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:38:10 +0300 Subject: [PATCH 3/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 26 ++------------------- 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index a5e56b86..295016e4 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,24 +1,2 @@ - on: - push: - branches: master - -name: Pkgdown - -jobs: - pkgdown: - runs-on: macOS-latest - steps: - - uses: actions/checkout@master - - uses: r-lib/actions/setup-r@master - - uses: r-lib/actions/setup-pandoc@master - - name: Install dependencies - run: | - Rscript -e 'install.packages("remotes")' \ - -e 'remotes::install_deps(dependencies = TRUE)' \ - -e 'remotes::install_github("jimhester/pkgdown@github-actions-deploy")' - - name: Install package - run: R CMD INSTALL . - - name: Deploy package - run: | - pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') - shell: Rscript {0} +name: GitHub Pages action +uses: peaceiris/actions-gh-pages@v2.10.1 From 38df9d95b250769219bdf1bbc6957d33b7c631a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:41:30 +0300 Subject: [PATCH 4/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 26 ++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 295016e4..8594961e 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,2 +1,26 @@ -name: GitHub Pages action + on: + push: + branches: master + + name: Pkgdown + + jobs: + pkgdown: + runs-on: macOS-latest + steps: + - uses: actions/checkout@master + - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-pandoc@master + - name: Install dependencies + run: | + Rscript -e 'install.packages("remotes")' \ + -e 'remotes::install_deps(dependencies = TRUE)' \ + -e 'remotes::install_github("jimhester/pkgdown@github-actions-deploy")' + - name: Install package + run: R CMD INSTALL . + - name: Deploy package + run: | + pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') + shell: Rscript {0} + uses: peaceiris/actions-gh-pages@v2.10.1 From 9cc1b95a431ce80977ffef594a5677173b5b6962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:44:23 +0300 Subject: [PATCH 5/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 45 +++++++++++---------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 8594961e..9a816c84 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,26 +1,27 @@ - on: - push: - branches: master +uses: peaceiris/actions-gh-pages@v2.10.1 + +on: + push: + branches: master - name: Pkgdown +name: Pkgdown - jobs: - pkgdown: - runs-on: macOS-latest - steps: - - uses: actions/checkout@master - - uses: r-lib/actions/setup-r@master - - uses: r-lib/actions/setup-pandoc@master - - name: Install dependencies - run: | - Rscript -e 'install.packages("remotes")' \ - -e 'remotes::install_deps(dependencies = TRUE)' \ - -e 'remotes::install_github("jimhester/pkgdown@github-actions-deploy")' - - name: Install package - run: R CMD INSTALL . - - name: Deploy package - run: | - pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') +jobs: + pkgdown: + runs-on: macOS-latest + steps: + - uses: actions/checkout@master + - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-pandoc@master + - name: Install dependencies + run: | + Rscript -e 'install.packages("remotes")' \ + -e 'remotes::install_deps(dependencies = TRUE)' \ + -e 'remotes::install_github("jimhester/pkgdown@github-actions-deploy")' + - name: Install package + run: R CMD INSTALL . + - name: Deploy package + run: | + pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') shell: Rscript {0} -uses: peaceiris/actions-gh-pages@v2.10.1 From cbd480c53b67f8e313eeffd71897ca5520a0e63e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:45:38 +0300 Subject: [PATCH 6/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 9a816c84..622fc350 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -22,6 +22,6 @@ jobs: run: R CMD INSTALL . - name: Deploy package run: | - pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') - shell: Rscript {0} + pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') + shell: Rscript {0} From 2a02b514bab7a5e8760b385da6a0bd02b9735486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:47:25 +0300 Subject: [PATCH 7/8] Update r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml index 622fc350..77e8de69 100644 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ b/.github/workflows/r-lib-actions-Pkgdown.yml @@ -1,5 +1,3 @@ -uses: peaceiris/actions-gh-pages@v2.10.1 - on: push: branches: master @@ -22,6 +20,5 @@ jobs: run: R CMD INSTALL . - name: Deploy package run: | - pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') + pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') shell: Rscript {0} - From b7309c21937f303df330b47c25ea2edd7a18aed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Balc=C4=B1?= Date: Fri, 31 Jan 2020 22:55:11 +0300 Subject: [PATCH 8/8] Delete r-lib-actions-Pkgdown.yml --- .github/workflows/r-lib-actions-Pkgdown.yml | 24 --------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/r-lib-actions-Pkgdown.yml diff --git a/.github/workflows/r-lib-actions-Pkgdown.yml b/.github/workflows/r-lib-actions-Pkgdown.yml deleted file mode 100644 index 77e8de69..00000000 --- a/.github/workflows/r-lib-actions-Pkgdown.yml +++ /dev/null @@ -1,24 +0,0 @@ -on: - push: - branches: master - -name: Pkgdown - -jobs: - pkgdown: - runs-on: macOS-latest - steps: - - uses: actions/checkout@master - - uses: r-lib/actions/setup-r@master - - uses: r-lib/actions/setup-pandoc@master - - name: Install dependencies - run: | - Rscript -e 'install.packages("remotes")' \ - -e 'remotes::install_deps(dependencies = TRUE)' \ - -e 'remotes::install_github("jimhester/pkgdown@github-actions-deploy")' - - name: Install package - run: R CMD INSTALL . - - name: Deploy package - run: | - pkgdown:::deploy_local(new_process = FALSE, remote_url = 'https://x-access-token:${{secrets.DEPLOY_PAT}}@github.com/${{github.repository}}.git') - shell: Rscript {0}