Skip to content

Commit

Permalink
fix[workflow]: deploy error
Browse files Browse the repository at this point in the history
  • Loading branch information
LHRUN committed Nov 2, 2024
1 parent 64c45d8 commit f0b3cab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
COMMIT_SECRET: ${{secrets.COMMIT_SECRET}}
USER_NAME: songlh
USER_EMAIL: song.lhlh@gmail.com
PUBLISH_DIR: ./dist
DOCKER_DIR: /app/dist
GITHUB_REPOSITORY: paint-board
runs-on: ubuntu-latest
steps:
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Copy build output
run: |
container_id=$(docker create paint-board)
docker cp $container_id:${PUBLISH_DIR} ./dist
docker cp $container_id:${DOCKER_DIR} ./dist
docker rm $container_id
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit f0b3cab

Please sign in to comment.