mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-08 03:18:36 +03:00
20 lines
494 B
YAML
20 lines
494 B
YAML
name: CD
|
|
on:
|
|
push:
|
|
branches: [ feature/allow-for-multiple-categories ]
|
|
# pull_request:
|
|
# branches: [ develop ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger CD build
|
|
uses: peter-evans/repository-dispatch@v1
|
|
with:
|
|
token: ${{ secrets.CI_DISPATCH_TOKEN }}
|
|
repository: forensic-architecture/configs
|
|
event-type: remote-build
|
|
client-payload: '{"runtime_args": "timemap", "branch": "${GITHUB_REF##*/}"}'
|
|
|