2024-01-19 08:13:22 -05:00
|
|
|
# Update the install page on the geode-sdk/website repository
|
|
|
|
name: Update Website
|
|
|
|
|
|
|
|
on:
|
2024-06-22 17:44:12 -04:00
|
|
|
# # trigger when a new release is released
|
|
|
|
# release:
|
|
|
|
# types:
|
|
|
|
# - released
|
2024-01-19 08:13:22 -05:00
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
trigger:
|
|
|
|
name: Trigger site build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-02-11 13:58:46 -05:00
|
|
|
- uses: actions/github-script@v7
|
2024-01-19 08:13:22 -05:00
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GEODE_BOT_PUSH_BIN_TOKEN }}
|
|
|
|
script: |
|
|
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
|
|
owner: 'geode-sdk',
|
|
|
|
repo: 'website',
|
|
|
|
workflow_id: 'build.yml',
|
|
|
|
ref: 'main'
|
2024-02-11 13:58:46 -05:00
|
|
|
})
|