Skip to content

Commit

Permalink
fix: 경로 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkenhw committed Jul 26, 2023
1 parent 2269622 commit f1795b0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/frontend-storybook-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,25 @@ jobs:

- name: npm build
run: npm run build-storybook
- name: echo
run: pwd

- uses: actions/upload-artifact@v3
with:
name: my-artifact
path: /storybook-static

- uses: actions/download-artifact@v2
with:
name: my-artifact
path: distfiles


- name: Deploy Prod use SCP
uses: appleboy/scp-action@master
with:
username: ${{ secrets.SERVER_USERNAME }}
host: ${{ secrets.DEV_HOST }}
key: ${{ secrets.SERVER_KEY }}
source: storybook-static
source: distfiles/*
target: storybook
# - name: Log in to Docker Hub
# uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
Expand Down

0 comments on commit f1795b0

Please sign in to comment.