diff --git a/.github/workflows/desktop.release.reuse.yml b/.github/workflows/desktop.release.reuse.yml index ecd22fbfc..de3ad7553 100644 --- a/.github/workflows/desktop.release.reuse.yml +++ b/.github/workflows/desktop.release.reuse.yml @@ -416,14 +416,3 @@ jobs: run: | sudo snap install snapcraft --classic 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 diff --git a/.github/workflows/releases.notify.yml b/.github/workflows/releases.notify.yml new file mode 100644 index 000000000..3def573b1 --- /dev/null +++ b/.github/workflows/releases.notify.yml @@ -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