2019-07-02 10:31:56 +00:00
|
|
|
#!/bin/bash
|
2021-03-03 18:33:19 +00:00
|
|
|
# Triggers a nightly build for the latest commit on main
|
2019-07-02 10:31:56 +00:00
|
|
|
# Use this for testing changes to the nightly release process
|
|
|
|
# Call with the CIRCLE_API_USER_TOKEN set to your Personal API key
|
|
|
|
# You can find this under User Settings on Circle CI
|
|
|
|
|
|
|
|
curl -u ${CIRCLE_API_USER_TOKEN}: \
|
|
|
|
-d build_parameters[CIRCLE_JOB]=nightly-build \
|
2021-03-03 18:33:19 +00:00
|
|
|
https://circleci.com/api/v1.1/project/github/wagtail/wagtail/tree/main
|