We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11d3340 commit a9f3897Copy full SHA for a9f3897
2 files changed
.github/workflows/deploy-pages.yml
@@ -0,0 +1,20 @@
1
+name: Deploy Website
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - 'web_visualizer/**' # Only run when web/ changes
8
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Deploy to GitHub Pages
16
+ uses: peaceiris/actions-gh-pages@v3
17
+ with:
18
+ github_token: ${{ secrets.GITHUB_TOKEN }}
19
+ publish_dir: ./web_visualizer
20
+ publish_branch: gh-pages
data_structure/vcpkg.json
@@ -2,6 +2,7 @@
"name": "lactea",
"version-string": "0.1.0",
"dependencies": [
+ "tbb",
"glfw3",
"glew",
"glm",
0 commit comments