2
0

trigger-nightly-build.sh 417 B

123456789
  1. #!/bin/bash
  2. # Triggers a nightly build for the latest commit on main
  3. # Use this for testing changes to the nightly release process
  4. # Call with the CIRCLE_API_USER_TOKEN set to your Personal API key
  5. # You can find this under User Settings on Circle CI
  6. curl -u ${CIRCLE_API_USER_TOKEN}: \
  7. -d build_parameters[CIRCLE_JOB]=nightly-build \
  8. https://circleci.com/api/v1.1/project/github/wagtail/wagtail/tree/main