Skip to content

Fixing path

Fixing path #1

Workflow file for this run

name: Tech Radar
on:
push:
branches: 'main'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
generate_tech_radar:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.pages_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate Tech Radar
id: deployment
uses: dvega-flexion/[email protected]
with:
radar_name: My Tech Radar
directory: ./
public_url: /radar # Since Github Pages is used, https://flexion.github.io is prepended to the URL
publish_to_pages: 'true'