Skip to content

Commit

Permalink
rename workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazs-flare authored Feb 15, 2024
1 parent 8975b09 commit 1e5ca0c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: docs-build

on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs build --strict
check-dead-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: gaurav-nelson/github-action-markdown-link-check@0f074c8562c5a8fed38282b7c741d1970bb1512d
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.github/workflows/markdown.links.config.json'
folder-path: 'docs'

Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: ci
name: docs-deploy

on:
push:
branches:
- main

jobs:
deploy:
if: github.repository == 'flare-foundation/docs'
Expand Down

0 comments on commit 1e5ca0c

Please sign in to comment.