Skip to content

Commit

Permalink
feat(ci): trigger homepage deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Savid committed Mar 28, 2024
1 parent 5c5b41d commit 7bc4763
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/generate-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,8 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git add -A
git commit -m "Update schema" || echo "No changes to commit"
git commit -m "Update schema" || echo "No changes to commit" && exit 0
git push
- name: Trigger deploy hook
run: |
curl -X POST "${{ secrets.HOMEPAGE_HOOK_URL }}"
5 changes: 4 additions & 1 deletion .github/workflows/update-availability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git add -A
git commit -m "Update data availability" || echo "No changes to commit"
git commit -m "Update data availability" || echo "No changes to commit" && exit 0
git push
- name: Trigger deploy hook
run: |
curl -X POST "${{ secrets.HOMEPAGE_HOOK_URL }}"

0 comments on commit 7bc4763

Please sign in to comment.