mumble/.github/workflows/release_dispatch.yml
Robert Adam edd4588c8a
CI(release-dispatch): Fix workflow file
This (hopefully) fixes the syntax of the release dispatch workflow file.
2024-12-10 15:41:56 +01:00

18 lines
559 B
YAML

name: Dispatch new release
on:
release:
types: [ published ]
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: "Dispatch release to mumble-docker repo"
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.DOCKER_REPO_ACCCESS_TOKEN }}
event-type: new_release
client_payload: >
{ "tag": "${{ github.event.release.tag_name }}", "is_latest": "${{ github.event.release.commitish == 'master' }}" }