Gatsby Cloud Build #598
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gatsby Cloud Build | |
on: | |
# run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# every day at 02:00 | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
env: | |
GATSBY_BUILD_WEBHOOK_URL: ${{ secrets.GATSBY_BUILD_WEBHOOK_URL }} | |
steps: | |
- name: Trigger build and deployment | |
run: curl -X POST $GATSBY_BUILD_WEBHOOK_URL |