Skip to content

Commit

Permalink
fix(workflow): workflow change
Browse files Browse the repository at this point in the history
  • Loading branch information
admin authored and admin committed Aug 8, 2024
1 parent 199a3f0 commit fed45bb
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,19 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout source code.
- name: Checkout source code
uses: actions/checkout@v3

- name: Cache Node modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: yarn

Expand All @@ -25,5 +34,4 @@ jobs:
aws s3 cp \
--recursive \
--region ap-northeast-2 \
packages/admin/dist s3://yangbong-front # 올바른 경로 설정
packages/admin/dist s3://yangbong-front

0 comments on commit fed45bb

Please sign in to comment.