Skip to content

Commit 16aa2ac

Browse files
committed
Updates on docs
1 parent 99a9735 commit 16aa2ac

15 files changed

+179
-23
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Download Link Check
2+
3+
on:
4+
deployment_status:
5+
6+
jobs:
7+
run:
8+
name: Initialize
9+
runs-on: ubuntu-latest
10+
if:
11+
github.event.deployment.ref != 'master' &&
12+
github.event.deployment_status.state == 'success'
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Download Link Checker
16+
uses: lycheeverse/lychee-action@v1.0.8
17+
with:
18+
args:
19+
--verbose "${{ github.event.deployment.payload.web_url }}" --base
20+
"${{ github.event.deployment.payload.web_url }}" --include
21+
/download/
22+
23+
env:
24+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
25+
- name: Check for Error Report
26+
if: hashFiles('./lychee/out.md') != ''
27+
run: |
28+
echo 'Errors were reported while checking download links.'
29+
exit 1

.svgo.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 3 additions & 1 deletion
Loading

docs/overrides/.icons/devices.svg

Lines changed: 3 additions & 1 deletion
Loading

docs/overrides/.icons/fdroid.svg

Lines changed: 6 additions & 1 deletion
Loading

docs/overrides/.icons/green-check.svg

Lines changed: 3 additions & 1 deletion
Loading

docs/overrides/.icons/green-cross.svg

Lines changed: 3 additions & 1 deletion
Loading

docs/overrides/.icons/kofi.svg

Lines changed: 5 additions & 1 deletion
Loading
Lines changed: 3 additions & 1 deletion
Loading

docs/overrides/.icons/red-check.svg

Lines changed: 3 additions & 1 deletion
Loading

0 commit comments

Comments
 (0)