From 51c62371af024a7e06cd546664f792e276ab4412 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 28 Sep 2021 16:43:45 +0100 Subject: [PATCH] Added `RELEASE_NOTIFICATION_URL` secret to release workflow refs https://linear.app/tryghost/issue/CORE-38/automate-releases - this is a notification endpoint which we pass down to the `action-ghost-release` GitHub Action to create notifications when the release is done --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca8d301d98..120cc9dace 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,7 @@ jobs: runs-on: ubuntu-18.04 env: RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }} + RELEASE_NOTIFICATION_URL: ${{ secrets.RELEASE_NOTIFICATION_URL }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} FORCE_COLOR: 1 steps: