mirror of
https://codeberg.org/forgejo/docs.git
synced 2025-02-08 04:26:39 -05:00
22 lines
783 B
YAML
22 lines
783 B
YAML
name: Links
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '00 18 * * *'
|
|
jobs:
|
|
linkChecker:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install lychee
|
|
run: |
|
|
# Cleanup artifacts from previous run in case it crashed
|
|
rm -rf "lychee-v0.15.0-x86_64-unknown-linux-gnu.tar.gz" lychee
|
|
curl -sLO "https://github.com/lycheeverse/lychee/releases/download/v0.15.0/lychee-v0.15.0-x86_64-unknown-linux-gnu.tar.gz"
|
|
tar -xvzf "lychee-v0.15.0-x86_64-unknown-linux-gnu.tar.gz"
|
|
rm "lychee-v0.15.0-x86_64-unknown-linux-gnu.tar.gz"
|
|
install -t "$HOME/.local/bin" -D lychee
|
|
|
|
- name: Link Checker
|
|
id: lychee
|
|
run: ./lychee --verbose --no-progress --scheme http --scheme https -f markdown -E ./docs
|