Skip to content

Commit bfe4c0c

Browse files
committed
feat: 🎉 first commit of project
0 parents  commit bfe4c0c

8 files changed

Lines changed: 518 additions & 0 deletions

File tree

.copier-answers.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2+
_commit: 0.26.0
3+
_src_path: gh:seedcase-project/template-website
4+
author_family_name: Johnston
5+
author_given_name: Luke
6+
github_repo: wp3-participants
7+
github_user: dp-next
8+
hosting_provider: gh-pages
9+
is_seedcase_website: false
10+
template_type: simple
11+
website_format: website
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Build website
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
# Limit token permissions for security
9+
permissions: read-all
10+
11+
jobs:
12+
build-deploy:
13+
runs-on: ubuntu-latest
14+
# Stop builds from running more than one at a time, to save resources and also
15+
# to limit conflicts when uploading to the hosting provider.
16+
concurrency:
17+
group: build-website-group
18+
cancel-in-progress: true
19+
permissions:
20+
contents: write
21+
pages: write
22+
steps:
23+
# This is a useful security step to check for unexpected outbound calls from the runner,
24+
# which could indicate a compromised token or runner.
25+
- name: Harden the runner (Audit all outbound calls)
26+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
27+
with:
28+
egress-policy: audit
29+
30+
- name: Check out repository
31+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
32+
33+
- name: Set up Quarto
34+
uses: quarto-dev/quarto-actions/setup@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
35+
36+
# NOTE: Needs the contents and pages write permissions (used above).
37+
- name: Render and publish to GitHub Pages
38+
uses: quarto-dev/quarto-actions/publish@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
39+
with:
40+
target: gh-pages
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Development files and folders
2+
_ignore
3+
bin/
4+
dev/
5+
_temp/
6+
7+
# Temporary files
8+
*.tmp
9+
10+
# Any IDE specific folders
11+
.idea
12+
13+
# MacOS
14+
.DS_Store
15+
16+
# Quarto
17+
/.quarto/
18+
docs/.quarto/
19+
**/*.quarto_ipynb
20+
21+
# Website generation
22+
_site
23+
_book
24+
public
25+
site

0 commit comments

Comments
 (0)