From eaf8080f9bb5458df29f473c4639ed6d9d45dc78 Mon Sep 17 00:00:00 2001 From: Jack Greiner Date: Mon, 13 May 2024 22:24:42 -0400 Subject: [PATCH] Update workflow to setup ruby. --- .github/workflows/website_check.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website_check.yml b/.github/workflows/website_check.yml index e7e14c2..d78831e 100644 --- a/.github/workflows/website_check.yml +++ b/.github/workflows/website_check.yml @@ -16,17 +16,21 @@ jobs: - name: Checkout Naev Website Repository uses: actions/checkout@v3 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Build and Check Website run: | make check - name: Upload Crash Log uses: actions/upload-artifact@v3 - if: failure() with: name: naev-website-${{ github.sha }}-crashlog - path: ${{ github.workspace }}/crash.log - if-no-files-found: error + path: ${{ github.workspace }}/*.log + if-no-files-found: warn - name: Upload Website Artifacts uses: actions/upload-artifact@v3