Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

15 righe
471 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/xhiveframework_docker/actions/workflows/build_stable.yml/dispatches -d '{"ref":"main"}'