mirror of
https://github.com/catppuccin/nim.git
synced 2024-12-23 11:30:43 -06:00
Compare commits
5 commits
2e2b0f705d
...
391f92c465
Author | SHA1 | Date | |
---|---|---|---|
|
391f92c465 | ||
|
94e670eb93 | ||
|
0e401523f0 | ||
|
9f1d3bd853 | ||
|
81cb6ad6e7 |
3 changed files with 22 additions and 11 deletions
27
.github/workflows/docs.yml
vendored
27
.github/workflows/docs.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: GitHub Pages
|
name: Deploy Docs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -7,23 +7,28 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
id-token: write
|
||||||
concurrency:
|
pages: write
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deploy.outputs.page_url }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: jiro4989/setup-nim-action@v1
|
- uses: jiro4989/setup-nim-action@v2
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build Docs
|
- name: Build Docs
|
||||||
run: nimble docs
|
run: nimble docs
|
||||||
|
|
||||||
- name: Deploy
|
- name: Upload artifact
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
path: "public/"
|
||||||
publish_dir: ./public
|
|
||||||
|
- name: Deploy artifact to GitHub Pages
|
||||||
|
id: deploy
|
||||||
|
uses: actions/deploy-pages@v4
|
||||||
|
|
6
renovate.json
Normal file
6
renovate.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"local>catppuccin/renovate-config"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue