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