forked from EbookFoundation/free-programming-books
-
Notifications
You must be signed in to change notification settings - Fork 2
86 lines (84 loc) · 2.51 KB
/
check-urls.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Check all URLs
# on: [workflow_dispatch]
on: [push]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch action
id: pl
uses: Rishabh510/Path-lister-action@master
with:
path: "books/"
type: ".md"
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- run: gem install awesome_bot
- run: |
echo "Found ${{ steps.pl.outputs.path_count }} file(s) with this extension:"
for i in ${{ steps.pl.outputs.paths }}; do
echo "processing $i";
awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true;
done
job2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch action
id: pl
uses: Rishabh510/Path-lister-action@master
with:
path: "casts/"
type: ".md"
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- run: gem install awesome_bot
- run: |
echo "Found ${{ steps.pl.outputs.path_count }} file(s) with this extension:"
for i in ${{ steps.pl.outputs.paths }}; do
echo "processing $i";
awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true;
done
job3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch action
id: pl
uses: Rishabh510/Path-lister-action@master
with:
path: "courses/"
type: ".md"
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- run: gem install awesome_bot
- run: |
echo "Found ${{ steps.pl.outputs.path_count }} file(s) with this extension:"
for i in ${{ steps.pl.outputs.paths }}; do
echo "processing $i";
awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true;
done
job4:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch action
id: pl
uses: Rishabh510/Path-lister-action@master
with:
path: "more/"
type: ".md"
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- run: gem install awesome_bot
- run: |
echo "Found ${{ steps.pl.outputs.path_count }} file(s) with this extension:"
for i in ${{ steps.pl.outputs.paths }}; do
echo "processing $i";
awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true;
done