Skip to content

Commit

Permalink
Merge pull request #49 from psychoinformatics-de/ci
Browse files Browse the repository at this point in the history
Fixes for the website build CI run
  • Loading branch information
adswa authored Sep 23, 2024
2 parents 5d9bbc0 + b99f191 commit 71d83d8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: '3.0'
bundler-cache: true

- name: Set up Python
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Look for R-markdown files
id: check-rmd
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
Expand Down Expand Up @@ -119,5 +119,3 @@ jobs:
# return
cd ..
- run: make lesson-check-all
if: always()

0 comments on commit 71d83d8

Please sign in to comment.