commit ae44d97dd4bcfe0a5beb1739ea44f4f09fca378c parent 846ab1776fc8c3d77f5e4b9a5aec692bcb9e35c5 Author: finwo <finwo@pm.me> Date: Sat, 14 Mar 2026 17:22:42 +0100 Hard dispatch the release workflow then Diffstat:
| M | .github/workflows/edge.yml | | | 10 | ++++++++++ |
| M | .github/workflows/release.yml | | | 3 | +++ |
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml @@ -26,5 +26,15 @@ jobs: git config --local user.name "github-actions[bot]" git add action.yml git commit -m "Release: update edge tag to edge" || echo "No changes to commit" + git push origin HEAD git tag -f edge git push -f origin edge + + - name: Trigger release + run: | + sleep 1 + curl -X POST https://api.github.com/repos/${{ github.repository }}/dispatches \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ + -H "Content-Type: application/json" \ + -d '{"event_type": "release-edge"}' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -4,6 +4,9 @@ on: push: tags: - '*' + repository_dispatch: + types: + - release-edge jobs: build: