From a2c95c969062cf982af54e9e270ee4233f2bf8a9 Mon Sep 17 00:00:00 2001 From: Bob Borges Date: Wed, 22 Jan 2025 10:37:06 +0100 Subject: [PATCH] =?UTF-8?q?install=20ruby=20=C2=BFjekyll=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pkgdown.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index bfc9f4d..4b4ddef 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -1,9 +1,6 @@ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: - push: - branches: [main, master] - pull_request: release: types: [published] workflow_dispatch: @@ -24,6 +21,14 @@ jobs: contents: write steps: - uses: actions/checkout@v4 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.0.2' + bundler-cache: true + - name: Install deps + run: | + npm install -g mermaid.cli - uses: r-lib/actions/setup-pandoc@v2