File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ jobs:
2828
2929 # aws cli를 통해 ncloud object storage 업로드
3030 - name : Configure AWS credentials
31- uses : aws-actions/configure-aws-credentials@v3
32- with :
33- aws-access-key-id : ${{ secrets.NCLOUD_ACCESS_KEY_ID }}
34- aws-secret-access-key : ${{ secrets.NCLOUD_SECRET_ACCESS_KEY }}
35-
36- - name : Upload files to S3
31+ env :
32+ NCLOUD_ACCESS_KEY_ID : ${{ secrets.NCLOUD_ACCESS_KEY_ID }}
33+ NCLOUD_SECRET_ACCESS_KEY : ${{ secrets.NCLOUD_SECRET_ACCESS_KEY }}
3734 run : |
38- aws --endpoint-url=http://octodocs.s3-website.kr.object.ncloudstorage.com s3 cp ./frontend/dist s3://octodocs --recursive
35+ aws configure set aws_access_key_id $NCLOUD_ACCESS_KEY_ID
36+ aws configure set aws_secret_access_key $NCLOUD_SECRET_ACCESS_KEY
37+ aws configure set region ap-northeast-2
38+ aws --endpoint-url=https://kr.object.ncloudstorage.com s3 cp ./frontend/dist s3://octodocs/ --recursive --debug
3939
4040 # 패키지 설치 및 Nest.js 빌드
4141 - name : Install dependencies and build
File renamed without changes.
You can’t perform that action at this time.
0 commit comments