Skip to content

Commit 0b4ba4d

Browse files
committed
Infra: 배포 워크플로우 수정
- ${{ env.OWNER_LC }} 변수 설정 1. deploy.env.OWNER 값 추가 2. 해당 값을 소문자로 줄여서 env에 저장
1 parent 5070cfb commit 0b4ba4d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,12 @@ jobs:
7676
deploy:
7777
runs-on: ubuntu-latest
7878
needs: [ buildImageAndPush ]
79+
env:
80+
OWNER: ${{ github.repository_owner }}
7981
steps:
80-
- name: Wait 60 seconds for image to be available
81-
run: sleep 60
82+
- name: set lower case owner name
83+
run: |
84+
echo "OWNER_LC=${OWNER,,}" >> ${GITHUB_ENV}
8285
8386
- name: AWS SSM Send-Command
8487
uses: peterkimzz/aws-ssm-send-command@master

0 commit comments

Comments
 (0)