Skip to content

Commit c38d14c

Browse files
authored
Add gdcore-tools hook (#7112)
Only show in developer changelog
1 parent e6b6406 commit c38d14c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This worflow notifies arthuro555's gdcore-tools repository when a new release is published.
2+
#
3+
# This is used to allow gdcore-tools, a library to use GDCore outside of GDevelop,
4+
# to attempt to automatically build, test, and publish a release for the new
5+
# GDevelop version.
6+
name: Trigger gdcore-tools pipeline
7+
8+
on:
9+
release:
10+
types: [published]
11+
12+
jobs:
13+
dispatch-event:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Repository Dispatch
17+
uses: peter-evans/repository-dispatch@v3
18+
with:
19+
token: ${{ secrets.GDCORE_TOOLS_PAT }}
20+
repository: arthuro555/gdcore-tools
21+
event-type: gdevelop-release
22+
client-payload: '{"release": ${{ toJson(github.event.release) }}}'

0 commit comments

Comments
 (0)