您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
455 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/frappe/frappe_docker/actions/workflows/build_stable.yml/dispatches -d '{"ref":"main"}'