From 6e4ee6eac533d8199665aed62d612d2528f228f3 Mon Sep 17 00:00:00 2001 From: Hans Song Date: Tue, 16 Apr 2024 23:08:24 +1000 Subject: [PATCH] update deployment workflow actions --- .github/workflows/_deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_deploy.yml b/.github/workflows/_deploy.yml index 1db2122..0195dfd 100644 --- a/.github/workflows/_deploy.yml +++ b/.github/workflows/_deploy.yml @@ -17,7 +17,7 @@ jobs: - uses: axatol/actions/send-deployment-notification@release with: webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} - job-status: pending + status: pending deploy: needs: notify @@ -39,14 +39,15 @@ jobs: - name: Create deployment marker if: success() - uses: axatol/actions/create-new-relic-deployment@release + uses: axatol/actions/create-newrelic-deployment@release with: + api-key: ${{ secrets.NEW_RELIC_API_KEY }} guid: ${{ secrets.NEW_RELIC_DEPLOYMENT_ENTITY_GUID }} deployment-type: ROLLING - name: Notify deployment complete if: success() || failure() - uses: axatol/actions/send-discord-deployment-notification@release + uses: axatol/actions/send-deployment-notification@release with: webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} status: ${{ steps.deploy.outcome }}