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 af49f5f commit 7e65f08Copy full SHA for 7e65f08
.github/workflows/rust.yml
@@ -59,10 +59,12 @@ jobs:
59
- name: Post summary JSON to remote API
60
env:
61
post_api: ${{ secrets.RUSTLINGS_2025_SPRING_POST_API }}
62
+ token: ${{ secrets.RUSTLINGS_2025_SPRING_TOKEN }}
63
run: |
64
summary_file=".github/result/summary.json"
- curl -X POST https://"$post_api" \
65
+ curl -X POST $post_api \
66
-H "accept: application/json;charset=utf-8" \
67
-H "Content-Type: application/json" \
68
+ -H "token: $token" \
69
-d "$(cat $summary_file)" \
70
-v
0 commit comments