Skip to content

Commit

Permalink
Merge pull request #83 from carpentries-incubator/znk-fix-workflows-2…
Browse files Browse the repository at this point in the history
…022-10-20

urgent: fix workflows
  • Loading branch information
ggrimes authored Dec 6, 2023
2 parents c1746eb + 951593e commit 8fc111a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,14 @@ jobs:
id: check-rmd
working-directory: lesson
run: |
echo "::set-output name=count::$(shopt -s nullglob; files=($(find . -iname '*.Rmd')); echo ${#files[@]})"
echo "count=$(shopt -s nullglob; files=($(find . -iname '*.Rmd')); echo ${#files[@]})" >> $GITHUB_OUTPUT
- name: Set up R
if: steps.check-rmd.outputs.count != 0
uses: r-lib/actions/setup-r@master
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
install-r: false
r-version: 'release'

- name: Install needed packages
Expand Down

0 comments on commit 8fc111a

Please sign in to comment.