This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
Add RayDeeUx to verified #1606
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
# Simple workflow for deploying static content to GitHub Pages | |
name: Trigger GeodeSDK Site Build | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
trigger: | |
name: Trigger site build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
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' | |
}) |