Skip to content

Commit 3a39e5a

Browse files
committed
cleaning and workflow
1 parent 33353df commit 3a39e5a

File tree

131 files changed

+160
-5225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+160
-5225
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/stale.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
pull_request:
9+
branches:
10+
- master
11+
- main
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
- name: Setup Quarto
20+
uses: quarto-dev/quarto-actions/setup@v2
21+
- name: Build site
22+
uses: quarto-dev/quarto-actions/render@v2
23+
- name: Upload artifact
24+
uses: actions/upload-pages-artifact@v3
25+
26+
# Deployment job
27+
deploy:
28+
# skip this job if the event that triggered the workflow is a pull request
29+
if: github.event_name != 'pull_request'
30+
permissions:
31+
pages: write
32+
id-token: write
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
runs-on: ubuntu-latest
37+
needs: build
38+
steps:
39+
- name: Deploy to GitHub Pages
40+
id: deployment
41+
uses: actions/deploy-pages@v4
42+
with:
43+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/deploy-docker-tag.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/deploy-image.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.quarto/
33
*.html
44
!_site/**/*.html
5-
/.DS_Store
5+
/**/.DS_Store
66
*/.DS_Store
77
/_freeze/
88
.bundle

.ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)