Update navigation.tsx (#23) #17
This file contains 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
# 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 |