Skip to content

Commit

Permalink
Update workflow to setup ruby.
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectSynchro committed May 14, 2024
1 parent 605af81 commit eaf8080
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/website_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eaf8080

Please sign in to comment.