We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de064e7 commit b15485bCopy full SHA for b15485b
.github/workflows/release.yml
@@ -51,3 +51,16 @@ jobs:
51
git --git-dir=gh-pages/.git --work-tree=gh-pages/ add .
52
git --git-dir=gh-pages/.git --work-tree=gh-pages/ commit -m "docs: release"
53
git --git-dir=gh-pages/.git --work-tree=gh-pages/ push
54
+ # We don't know when the site will be deployed, we just wait a few seconds
55
+ # Better solutions can be found
56
+ delay:
57
+ needs: build
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - name: Delay for 120 seconds
61
+ run: sleep 120s
62
+ index:
63
+ needs: [build, delay]
64
+ uses: ./.github/workflows/algolia.yml
65
+ with:
66
+ delete_index: true
0 commit comments