Skip to content

Commit 1c13f1d

Browse files
committed
feat: init: site hyperverse.world
1 parent 982e39e commit 1c13f1d

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/publish.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
on:
2+
push:
3+
branches: [main]
4+
workflow_dispatch:
5+
6+
name: Publish site
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: r-lib/actions/setup-r@v2
17+
with:
18+
use-public-rspm: true
19+
20+
- uses: r-lib/actions/setup-r-dependencies@v2
21+
with:
22+
packages: |
23+
yaml
24+
htmltools
25+
here
26+
27+
- uses: quarto-dev/quarto-actions/setup@v2
28+
29+
- name: Publish to GitHub Pages
30+
uses: quarto-dev/quarto-actions/publish@v2
31+
with:
32+
target: gh-pages
33+
env:
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)