Skip to content

Commit

Permalink
change ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
reteps committed Oct 4, 2024
1 parent 78db68c commit 20e631e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 20e631e

Please sign in to comment.