Skip to content

Started work on the sporadic naev newsletter vol 4. #196

Started work on the sporadic naev newsletter vol 4.

Started work on the sporadic naev newsletter vol 4. #196

Workflow file for this run

on: [push, pull_request]
name: Website Check
permissions: {}
jobs:
"Check_Website":
permissions:
contents: read
runs-on: ubuntu-latest
container:
image: "ghcr.io/naev/naev-docs:latest"
steps:
- name: Checkout Naev Website Repository
uses: actions/checkout@v3
- 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
- name: Upload Website Artifacts
uses: actions/upload-artifact@v3
with:
name: naev-website-${{ github.sha }}
path: ${{ github.workspace }}/output/*
if-no-files-found: error