We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be786e commit 94f3a26Copy full SHA for 94f3a26
.github/workflows/deploy.yml
@@ -50,13 +50,18 @@ jobs:
50
git commit -m "chore: update publications from Google Scholar"
51
git push
52
53
- # deploy:
54
- # needs: build
55
- # runs-on: ubuntu-latest
56
- # environment:
57
- # name: github-pages
58
- # url: ${{ steps.deployment.outputs.page_url }}
59
- # steps:
60
- # - name: Deploy to GitHub Pages
61
- # id: deployment
62
- # uses: actions/deploy-pages@v4
+ - name: Upload Pages artifact
+ uses: actions/upload-pages-artifact@v3
+ with:
+ path: .
+
+ deploy:
+ needs: build
+ runs-on: ubuntu-latest
+ environment:
+ name: github-pages
63
+ url: ${{ steps.deployment.outputs.page_url }}
64
+ steps:
65
+ - name: Deploy to GitHub Pages
66
+ id: deployment
67
+ uses: actions/deploy-pages@v4
0 commit comments