Skip to content

Update navigation.tsx (#23) #17

Update navigation.tsx (#23)

Update navigation.tsx (#23) #17

Workflow file for this run

# SPDX-FileCopyrightText: 2020 Kaelan Thijs Fouwels <[email protected]>
#
# SPDX-License-Identifier: MIT
on:
push:
branches:
- mainline
name: Core
jobs:
licencing:
runs-on: ubuntu-latest
name: Licensing (SPDX)
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2
package:
runs-on: ubuntu-latest
name: Package (Make)
steps:
- uses: actions/checkout@v4
- name: release application
run: make package
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: 'github-pages'
path: 'artifact.tar'
if-no-files-found: error
deploy:
needs: [package, licencing]
runs-on: ubuntu-latest
name: Deploy (Github Pages)
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4