We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51af8e3 commit c37c29eCopy full SHA for c37c29e
.github/workflows/daily-build.yml
@@ -61,7 +61,13 @@ jobs:
61
fi
62
63
- name: Trigger downstream workflow (optional)
64
- uses: './.github/workflows/publish.yml'
+ uses: actions/github-script@v6
65
if: ${{ steps.log_result.outputs.trigger_next_workflow }}
66
with:
67
- ref: ${{ github.ref }}
+ script: |
68
+ github.actions.createWorkflowDispatch({
69
+ owner: 'CGNS',
70
+ repo: 'cgns.github.io ',
71
+ workflow_id: 'publish.yml',
72
+ ref: ${{ github.ref }}
73
+ })
0 commit comments