From 14453ccbff5eda42c0c8c2421caece9b8ca98720 Mon Sep 17 00:00:00 2001 From: LeeJaehyung <122717063+LeeJae-H@users.noreply.github.com> Date: Wed, 4 Sep 2024 20:47:26 +0900 Subject: [PATCH] =?UTF-8?q?Delete:=20action-secret=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- set-actions-secret.ps1 | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 set-actions-secret.ps1 diff --git a/set-actions-secret.ps1 b/set-actions-secret.ps1 deleted file mode 100644 index 32dc7db5..00000000 --- a/set-actions-secret.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -# Set GitHub secrets using PowerShell - -$files = @{ - "DOCKER_COMPOSE_DEPLOY" = "./docker/deploy/docker-compose.yml" - "DOCKER_COMPOSE_STAGING" = "./docker/staging/docker-compose.yml" - "APPLICATION_DEPLOY" = "./genti-api/src/main/resources/application-deploy.yaml" - "APPLICATION_SECRET" = "./genti-api/src/main/resources/application-secret.yaml" - "APPLICATION_STAGING" = "./genti-api/src/main/resources/application-staging.yaml" -} - -foreach ($secretName in $files.Keys) { - $filePath = $files[$secretName] - $content = Get-Content -Path $filePath -Raw - gh secret set $secretName -b"$content" -} - -curl https://discord.com/api/webhooks/1280150154510602381/u-noRMoiACzAKzcQL1JdWrP-CcUfcJsJlvRahRBSQoPFopFhRqBuLrZaNG58uYmq79Ur \ No newline at end of file