From 012201017229563f1447ef11251ab9db906045a7 Mon Sep 17 00:00:00 2001 From: Lakshay Manchanda <45519620+lakshayman@users.noreply.github.com> Date: Sun, 3 Mar 2024 04:40:21 +0530 Subject: [PATCH] Set IDENTITY_SERVICE_PUBLIC_KEY environment while deploying (#201) --- .github/workflows/register-commands-production.yaml | 2 ++ .github/workflows/register-commands-staging.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/register-commands-production.yaml b/.github/workflows/register-commands-production.yaml index f0d161aa..161dffdb 100644 --- a/.github/workflows/register-commands-production.yaml +++ b/.github/workflows/register-commands-production.yaml @@ -36,6 +36,7 @@ jobs: BOT_PRIVATE_KEY RDS_SERVERLESS_PUBLIC_KEY CRON_JOBS_PUBLIC_KEY + IDENTITY_SERVICE_PUBLIC_KEY env: CURRENT_ENVIRONMENT: production CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_API_TOKEN}} @@ -45,3 +46,4 @@ jobs: DISCORD_GUILD_ID: ${{secrets.DISCORD_GUILD_ID}} RDS_SERVERLESS_PUBLIC_KEY: ${{secrets.RDS_SERVERLESS_PUBLIC_KEY}} CRON_JOBS_PUBLIC_KEY: ${{secrets.CRON_JOBS_PUBLIC_KEY}} + IDENTITY_SERVICE_PUBLIC_KEY: ${{secrets.IDENTITY_SERVICE_PUBLIC_KEY}} diff --git a/.github/workflows/register-commands-staging.yaml b/.github/workflows/register-commands-staging.yaml index d5d26209..41384440 100644 --- a/.github/workflows/register-commands-staging.yaml +++ b/.github/workflows/register-commands-staging.yaml @@ -35,6 +35,7 @@ jobs: CURRENT_ENVIRONMENT BOT_PRIVATE_KEY CRON_JOBS_PUBLIC_KEY + IDENTITY_SERVICE_PUBLIC_KEY env: CURRENT_ENVIRONMENT: staging CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_API_TOKEN}} @@ -43,3 +44,4 @@ jobs: BOT_PRIVATE_KEY: ${{secrets.BOT_PRIVATE_KEY}} DISCORD_GUILD_ID: ${{secrets.DISCORD_GUILD_ID}} CRON_JOBS_PUBLIC_KEY: ${{secrets.CRON_JOBS_PUBLIC_KEY}} + IDENTITY_SERVICE_PUBLIC_KEY: ${{secrets.IDENTITY_SERVICE_PUBLIC_KEY}}