We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c203d01 commit 30c24b9Copy full SHA for 30c24b9
.github/workflows/publish.yml
@@ -0,0 +1,22 @@
1
+name: Publish
2
+on:
3
+ push:
4
+ branches: [source]
5
+
6
+jobs:
7
+ publish:
8
+ name: Publish website
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-python@v5
13
+ - name: Install dependencies
14
+ run: |
15
+ pip install -U pip poetry
16
+ poetry install
17
+ - name: Build
18
+ run: mkdocs build
19
+ - name: Publish
20
+ uses: actions/upload-pages-artifact@v3
21
+ with:
22
+ path: "site"
mkdocs.yml
@@ -1,5 +1,6 @@
site_name: Bryan Tan's Website
-remote_branch: site
+remote_branch: source
+site_url: https://technius.net
nav:
- Home: index.md
- Research: research.md
0 commit comments