Skip to content

Commit

Permalink
Explore job sharing between locations
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Jan 14, 2024
1 parent 205ea5b commit 9794d2f
Showing 1 changed file with 52 additions and 8 deletions.
60 changes: 52 additions & 8 deletions .github/workflows/deploy-cran-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:
# Or when triggered manually
workflow_dispatch: {}

name: Build WASM R package and Repo
name: Build WASM R package, Repo, and pkgdown website to deploy onto GH Pages

jobs:
deploy-cran-repo:
rwasmbuild:
# Only restrict concurrency for non-PR jobs
concurrency:
group: r-wasm-${{ github.event_name != 'pull_request' || github.run_id }}
Expand All @@ -28,11 +28,55 @@ jobs:
with:
packages: "."
repo-path: "_site"
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: rwasmrepo
path: |
_site
pkgdown:
needs: rwasmbuild
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
# To download GitHub Packages within action
repository-projects: read
# For publishing to pages environment
pages: write
id-token: write
steps:
- uses: actions/checkout@v3

- name: Deploy wasm R packages to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]
- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, local::.
needs: website

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}

- name: Download build artifact
uses: actions/download-artifact@v3
with:
clean: false
branch: gh-pages
folder: _site
name: rwasmrepo

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2



0 comments on commit 9794d2f

Please sign in to comment.