From 37773d408f2fa43cd22f78ff6d3677b126aac654 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Mon, 28 Oct 2019 04:10:33 -0400 Subject: [PATCH] Delay documentation deployment This should hopefully fix any possible issues where the NPM package may be released after the documentation is deployed, which could cause a cause miss by jsDelivr and cause the documentation to cache without pulling in the Select2 dependency. It hasn't happened yet, but I'm concerned it could happen and I don't want to put in the effort to make a more sophisticated way of handling this issue. --- .github/workflows/docs-deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index c7bcca8a..086c9126 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -7,6 +7,9 @@ jobs: name: Deploy Grav runs-on: ubuntu-latest steps: + - uses: maddox/actions/sleep@master + with: + args: "60" - uses: actions/checkout@v1 - name: Copy to documentation server uses: maxheld83/rsync@v0.1.0