Skip to content

Commit 9f211cb

Browse files
committed
add action, triggering shaderManual deployment action
1 parent db2b615 commit 9f211cb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/shaderManual.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: shaderManual_deploy
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
shaderManual_deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/github-script@v6
10+
with:
11+
github-token: ${{ secrets.ACTION_TOKEN }}
12+
script: |
13+
await github.rest.actions.createWorkflowDispatch({
14+
owner: 'Garux',
15+
repo: 'shaderManual',
16+
workflow_id: 'static.yml',
17+
ref: 'main'
18+
})

0 commit comments

Comments
 (0)