-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(app): support base url * ci(blog): example action for building cydonia site * chore(pkg): bumps version to 0.0.6 * ci(cydonia): use 0.0.6 * ci(cydonia): install 0.0.6 with 0.0.5 * ci(cydonia): use root action * ci(cache): cache with specifed version * ci(cydonia): remove docs * chore(blog): remove base in cydonia.toml * ci(cydonia): get back base * chore(app): remove the base implementation * Revert "chore(app): remove the base implementation" This reverts commit f4649dc. * fix(watcher): handle the base path in development server * chore(blog): update the basic template * chore(action): use 0.0.7 * docs(README): make readme shorter * docs(manifest): add repo url
- Loading branch information
Showing
13 changed files
with
213 additions
and
212 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Cydonia | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./ | ||
- run: cydonia build blog | ||
- name: Deploy | ||
if: github.event_name != 'pull_request' | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./blog/out |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
# my-blog/cydonia.toml | ||
title = "Cydonia" # The title of the site. | ||
title = "Cydonia" # The title of the site. | ||
|
||
# Default values of the optional fields. | ||
# -------------------------------------- | ||
|
||
favicon = "favicon.svg" # The path to the favicon. | ||
out = "out" # The path to the output directory. | ||
posts = "posts" # The path to the posts. | ||
public = "public" # The path to the public directory. | ||
templates = "templates" # The path to the templates. | ||
|
||
# Theme could also be a folder: | ||
# | ||
# - [theme] | ||
# - index.css (required) | ||
# - post.css (required) | ||
# - theme.css (optional) | ||
theme = "theme" | ||
base = "" | ||
favicon = "favicon.svg" # The path to the favicon. | ||
out = "out" # The path to the output directory. | ||
posts = "posts" # The path to the posts. | ||
public = "public" # The path to the public directory. | ||
templates = "templates" # The path to the templates. | ||
theme = "theme/theme.css" # The path to the theme.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.