We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
static-builds.yml
pull_request
Related project scope(s): GHA and PRs
The artifacts' URL is not easy to find.
(except at release time, of course)
The text was updated successfully, but these errors were encountered:
Algo (given ocaml-sf/learn-ocaml is a public repo):
curl \ -H "Accept: application/vnd.github+json" \ "https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts" \ | jq '[.artifacts | .[] | {"id": .id, "name": .name, "up": .updated_at, "exp": .expires_at, "dl_fyi": .archive_download_url}]' # curl -D - \ # -H "Accept: application/vnd.github+json" \ # -H "Authorization: Bearer $TOKEN" \ # (PAC, public repo) # "$dl_fyi" curl \ -H "Accept: application/vnd.github+json" \ "https://api.github.com/repos/ocaml-sf/learn-ocaml/actions/runs/${{ github.run_id }}" \ | jq '.check_suite_id' echo https://github.com/ocaml-sf/learn-ocaml/suites/$suite_id/artifacts/$art_id echo Status description: name; should login to download the github artifact; timestamps with `date` rendering Use https://docs.github.com/en/rest/commits/statuses#create-a-commit-status
Sorry, something went wrong.
ci(pin-artifacts.yml): Add build artifacts links within upstream comm…
e55cf61
…its status (#501) Close #475
erikmd
Successfully merging a pull request may close this issue.
Related project scope(s): GHA and PRs
The problem
The artifacts' URL is not easy to find.
(except at release time, of course)
Wanted solution
static-builds.yml
and the zip archive.
Additional context
https://github.com/coq/bot/blob/e278b31632aa0bfad0934b028f82324bfd2eb486/src/actions.ml#L210-L228
https://github.com/coq/bot/blob/e278b31632aa0bfad0934b028f82324bfd2eb486/bot-components/GitHub_mutations.ml#L203-L211
The text was updated successfully, but these errors were encountered: