mirror of
https://github.com/TacoWolf/garden.git
synced 2026-01-14 13:10:02 -05:00
Auto saved by Logseq
This commit is contained in:
parent
3e1bd40838
commit
a1ef85b355
1 changed files with 21 additions and 1 deletions
|
|
@ -9,5 +9,25 @@ tags:: #seed #infrastructure #github #logseq sync
|
|||
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
|
||||
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
|
||||
- # set up the github auto publish file
|
||||
- there's a [github action in the marketplace](https://github.com/marketplace/actions/logseq-publish-spa) that'll [[take you to the mountain]]
|
||||
- there's a [github action in the marketplace](https://github.com/marketplace/actions/logseq-publish-spa); that'll [[take you to the mountain]]. you can just copy and paste the one that's there, no tweaking needed. here's a copy just in case:
|
||||
- ```
|
||||
on: [push]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
name: Publish Logseq graph
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: logseq/publish-spa@v0.2.0
|
||||
- name: add a nojekyll file # to make sure asset paths are correctly identified
|
||||
run: touch $GITHUB_WORKSPACE/www/.nojekyll
|
||||
- name: Deploy 🚀
|
||||
uses: JamesIves/github-pages-deploy-action@v4
|
||||
with:
|
||||
folder: www
|
||||
```
|
||||
-
|
||||
- # set up the
|
||||
Loading…
Add table
Reference in a new issue