Skip to content

Commit

Permalink
fix: var name & actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
ebokyung committed Feb 18, 2024
1 parent 153617b commit 1f4de65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/githubaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# 아무것도 없는 OS에서 자동으로 우리 코드를 클론하고 다운받아 실행하게 해주는 소스코드
- name: Checkout source code.
uses: actions/checkout@v3
uses: actions/checkout@v4

# Node 버전 설정
- name: Setup node
Expand All @@ -36,11 +36,11 @@ jobs:

# AWS 자격증명 설정
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}

# S3에 빌드 폴더 업로드
- name: Deploy S3
Expand Down

0 comments on commit 1f4de65

Please sign in to comment.