You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
463 B

  1. name: Trigger Docker build on release
  2. on:
  3. release:
  4. types: [released]
  5. jobs:
  6. curl:
  7. runs-on: ubuntu-latest
  8. container:
  9. image: alpine:latest
  10. steps:
  11. - name: curl
  12. run: |
  13. apk add curl bash
  14. curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${{ secrets.CI_PAT }}" https://api.github.com/repos/xhiveframework/frappe_docker/actions/workflows/build_stable.yml/dispatches -d '{"ref":"main"}'