2020-06-06 21:08:49 +05:30
|
|
|
name: Trigger Docker build on release
|
|
|
|
on:
|
|
|
|
release:
|
2020-06-19 23:56:53 +05:30
|
|
|
types: [released]
|
2020-06-06 21:08:49 +05:30
|
|
|
jobs:
|
|
|
|
curl:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: alpine:latest
|
|
|
|
steps:
|
|
|
|
- name: curl
|
|
|
|
run: |
|
|
|
|
apk add curl bash
|
2021-11-03 13:52:37 +05:30
|
|
|
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"}'
|