Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
SWilson4 committed Feb 1, 2024
1 parent dae14ab commit 733cd03
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
--header "Accept: application/vnd.github+json" \
--header "Authorization: Bearer ${{ secrets.OQSBOT_GITHUB_ACTIONS }}" \
--header "X-GitHub-Api-Version: 2022-11-28" \
--data '{ \
"event_type": "liboqs-release", \
"client_payload": { \
"liboqs_ref": "tags/${{ github.event.release.tag_name }}", \
"provider_ref": "heads/${{ github.event.release.tag_name }}-tracker" \
} \
--data '{
"event_type": "liboqs-release",
"client_payload": {
"liboqs_ref": "${{ github.event.release.tag_name }}",
"provider_ref": "${{ github.event.release.tag_name }}-tracker"
}
}' \
https://api.github.com/repos/open-quantum-safe/oqs-provider/dispatches | tee curl_out \
&& grep -q "204" curl_out

0 comments on commit 733cd03

Please sign in to comment.