From 1903da569b582072e92a0b121d05247e7ed9a83e Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sat, 7 Jun 2025 16:22:39 +0200 Subject: [PATCH] build: explicitly trigger build after pushing release tag (#10160) Because just pushing the tag with a non-Actions token doesn't suffice, apparently --- .github/workflows/release-syncthing.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-syncthing.yaml b/.github/workflows/release-syncthing.yaml index 94e4c83ee..2e452709f 100644 --- a/.github/workflows/release-syncthing.yaml +++ b/.github/workflows/release-syncthing.yaml @@ -51,3 +51,9 @@ jobs: git config --global user.email 'release@syncthing.net' git tag -a -F notes.md --cleanup=whitespace "$NEXT" git push origin "$NEXT" + + - name: Trigger the build + uses: benc-uk/workflow-dispatch@v1 + with: + workflow: build-syncthing.yaml + ref: refs/tags/$NEXT