Skip to content

super linter forced to look into project root #7

super linter forced to look into project root

super linter forced to look into project root #7

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Generate docs/index.md from the repository root README.md (no duplicate committed)
- name: Generate index.md from README.md
shell: bash
run: |
set -euo pipefail
cat > docs/index.md <<'EOF'
---
layout: default
---
EOF
cat README.md >> docs/index.md
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4