Skip to content

Commit

Permalink
fix: jobs change
Browse files Browse the repository at this point in the history
  • Loading branch information
jaemin-s committed Nov 25, 2024
1 parent dc9f469 commit 25131ec
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/deployToGithubPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,16 @@ jobs:
run: |
yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out

- name: Push to github.io
run: |
cd ./out
git init
git add .
git commit -m "deloy"
git remote add origin https://github.com/jaemin-s/jaemin-s.github.io.git
git push -f main
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GH_TOKEN }}
# publish_dir: ./out

0 comments on commit 25131ec

Please sign in to comment.