No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- name: Trigger Docker build on release
- on:
- release:
- types: [released]
- jobs:
- curl:
- runs-on: ubuntu-latest
- container:
- image: alpine:latest
- steps:
- - name: curl
- run: |
- apk add curl bash
- 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"}'
|