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 d042a2d commit 5e9941fCopy full SHA for 5e9941f
.github/workflows/release.yml
@@ -173,8 +173,13 @@ jobs:
173
174
build-unity-loader:
175
needs: [release]
176
- uses: M-CreativeLab/jsar-loader-unity/.github/workflows/release.yml@main
177
- permissions:
178
- contents: write
179
- with:
180
- jsar_runtime_version: ${{ github.event.inputs.tag_name }}
+ run: |
+ REPO_OWNER="M-CreativeLab"
+ REPO_NAME="jsar-loader-unity"
+ TOKEN="${{ secrets.GITHUB_TOKEN }}"
+ curl -X POST \
181
+ -H "Authorization: Bearer $TOKEN" \
182
+ -H "Accept: application/vnd.github.everest-preview+json" \
183
+ -H "Content-Type: application/json" \
184
+ https://api.github.com/repos/$REPO_OWNER/$REPO_NAME/dispatches \
185
+ --data '{"jsar_runtime_version": "${{ inputs.tag_name }}"}'
0 commit comments