This repository was archived by the owner on Aug 30, 2025. It is now read-only.
0.12.6 release blarg. #311
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: [push, pull_request] | |
| name: Website Check | |
| permissions: {} | |
| jobs: | |
| "Check_Website": | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Naev Website Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup APT Packages | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: graphicsmagick optipng tidy | |
| version: website_1.0 | |
| - 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@v4 | |
| with: | |
| name: naev-website-${{ github.sha }}-crashlog | |
| path: ./*.log | |
| if-no-files-found: warn | |
| - name: Upload Website Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: naev-website-${{ github.sha }} | |
| path: ./output/* | |
| if-no-files-found: error |