Skip to content

Commit 6b0c75b

Browse files
committed
Prepare for GitHub pages.
1 parent 533d161 commit 6b0c75b

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
name: Render and Publish
7+
8+
permissions:
9+
contents: write
10+
pages: write
11+
12+
jobs:
13+
publish:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Check out repository
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Quarto
21+
uses: quarto-dev/quarto-actions/setup@v2
22+
with:
23+
version: 1.8.24
24+
env:
25+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
27+
- name: Publish to GitHub Pages (and render)
28+
uses: quarto-dev/quarto-actions/publish@v2
29+
with:
30+
target: gh-pages
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

_quarto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ website:
66
title: MINI
77
favicon: assets/logo-mini_180x180.png
88
description: 'Modular Independent Neovim Improvements'
9-
site-url: https://nvim-mini.org
9+
site-url: https://echasnovski.github.io/mini-site
1010
repo-url: https://github.com/nvim-mini
1111

1212
open-graph:

0 commit comments

Comments
 (0)