From 381f1223017dd49875b02f75570b1a68d631a800 Mon Sep 17 00:00:00 2001 From: junseublim Date: Tue, 6 Aug 2024 01:10:43 +0900 Subject: [PATCH] set env for deploy job --- .github/workflows/cicd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 3583fab..565e953 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -30,6 +30,8 @@ jobs: deploy: needs: build runs-on: ${{ github.event_name == 'release' && 'prod' || 'dev' }} + environment: + name: ${{ github.event_name == 'release' && 'production' || 'development' }} steps: - name: Pull from DockerHub