We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4341f0e commit 39a2868Copy full SHA for 39a2868
.github/workflows/release.yaml
@@ -59,3 +59,15 @@ jobs:
59
asset_path: ${{ env.RESUME_TARGET }}
60
asset_name: ${{ env.RESUME_NAME }}
61
asset_content_type: application/pdf
62
+
63
+ - name: Prepare GitHub Pages deployment
64
+ run: |
65
+ mkdir gh-pages
66
+ cp release/resume.html gh-pages/index.html
67
+ cp release/resume.pdf gh-pages/
68
69
+ - name: Deploy to GitHub Pages
70
+ uses: peaceiris/actions-gh-pages@v3
71
+ with:
72
+ github_token: ${{ secrets.GITHUB_TOKEN }}
73
+ publish_dir: gh-pages
0 commit comments