From 20e631eb7ed957b89ace760fd2f9ecd8b015e6b1 Mon Sep 17 00:00:00 2001 From: Pete Stenger Date: Fri, 4 Oct 2024 13:49:09 -0500 Subject: [PATCH] change ordering --- .github/workflows/deploy-test.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index 236ce5ef..a4addeb1 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -30,6 +30,15 @@ jobs: working-directory: ${{ env.CI_WORKING_DIR }} build-directory: ${{ env.CI_BUILD_DIR }} cache-directory: ${{ env.CI_CACHE_DIR }} + - name: Save scheduled discord pings + run: | + echo -e "name: \"workflow\"\non: workflow_dispatch3" > .github/workflows/date.yml + # Note: the following account information will not work on GHES!! + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "generated" + git push - name: Deploy to Cloudflare Pages if: github.actor != 'dependabot[bot]' uses: cloudflare/pages-action@v1 @@ -40,13 +49,4 @@ jobs: gitHubToken: ${{ secrets.GITHUB_TOKEN }} workingDirectory: ${{ env.CI_WORKING_DIR }} directory: ${{ env.CI_BUILD_DIR }} - - - name: Save scheduled discord pings - run: | - echo -e "name: \"workflow\"\non: workflow_dispatch3" > .github/workflows/date.yml - # Note: the following account information will not work on GHES!! - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add . - git commit -m "generated" - git push \ No newline at end of file + \ No newline at end of file