File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change 16
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
17
jobs :
18
18
# This workflow contains a single job called "build"
19
- build :
19
+ start :
20
20
# The type of runner that the job will run on
21
21
runs-on : ubuntu-latest
22
22
@@ -47,13 +47,21 @@ jobs:
47
47
# unzip cavif-1.5.4.zip
48
48
# sudo mv ./linux-generic/cavif /bin
49
49
# # find ./content/posts/ -type f \( -name "*.jpg" -o -name "*.png" -o -name "*.jpeg" \) -exec cavif {} \;
50
-
51
- - name : Build and Publish Github Pages
52
- uses : ./.github/workflows/gh-pages.yml
53
50
54
- - name : Build and Publish IPFS
55
- uses : ./.github/workflows/ipfs.yml
51
+ github_pages :
52
+ name : Build and Publish Github Pages
53
+ uses : ./.github/workflows/gh-pages.yml
54
+ needs :
55
+ - start
56
56
57
+ ipfs :
58
+ name : Build and Publish IPFS
59
+ uses : ./.github/workflows/ipfs.yml
60
+ needs :
61
+ - start
62
+
63
+ end :
64
+ steps :
57
65
- name : Easyindex
58
66
run : |
59
67
echo '${{ secrets.GOOGLE_INDEXING_API_TOKEN }}' > ./credentials.json
66
74
curl -s -L https://github.com/usk81/easyindex-cli/releases/download/v1.0.6/easyindex-cli_1.0.6_linux_amd64.tar.gz | tar xz
67
75
chmod +x ./easyindex-cli
68
76
./easyindex-cli google -d -c ./url.csv
77
+ needs :
78
+ - github_pages
You can’t perform that action at this time.
0 commit comments