chore: make notify release step manually triggered

This commit is contained in:
Antonella Sgarlatta
2026-02-06 00:14:41 -03:00
parent 14b28ef562
commit 761df36eeb
2 changed files with 15 additions and 11 deletions

View File

@@ -416,14 +416,3 @@ jobs:
run: | run: |
sudo snap install snapcraft --classic sudo snap install snapcraft --classic
snapcraft upload dist/standard-notes-${{ env.APP_VERSION }}-linux-amd64.snap --release stable,candidate,beta,edge snapcraft upload dist/standard-notes-${{ env.APP_VERSION }}-linux-amd64.snap --release stable,candidate,beta,edge
Notify:
runs-on: ubuntu-latest
needs: [Publish]
steps:
- name: Notify Release Update
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.CI_PAT_TOKEN }}
repository: ${{ secrets.RELEASES_EVENT_RECEIVING_REPO }}
event-type: releases-updated-event

15
.github/workflows/releases.notify.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Notify Marketing Releases Update
on:
workflow_dispatch:
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notify Release Update
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.CI_PAT_TOKEN }}
repository: ${{ secrets.RELEASES_EVENT_RECEIVING_REPO }}
event-type: releases-updated-event