Skip to content

Commit

Permalink
Merge pull request #76 from resbazaz/quarto
Browse files Browse the repository at this point in the history
Nuke old site and replace with new quarto-based one
  • Loading branch information
julianpistorius authored Mar 8, 2024
2 parents 35103bb + 4ca7f6d commit 0ce617b
Show file tree
Hide file tree
Showing 128 changed files with 560 additions and 8,161 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Build and Deploy
on: push
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Update People Info 🙂 # This pulls the latest info about who is on which Github team
run: |
gh api graphql -f query='
query {
organization(login: "resbazaz") {
teams(first:100) {
nodes {
name
members(first:100) {
nodes {
id
}
}
}
}
membersWithRole(first:100) {
nodes {
id
name
login
bio
company
avatarUrl
socialAccounts(first:10) {
edges {
node {
provider
url
}
}
}
}
}
}
}
' > data/people.json
env:
GITHUB_TOKEN: ${{ secrets.ORGANIZATION_READER }}

- name: Set up Quarto 🔧 # This compiles the site into the _site folder
uses: quarto-dev/quarto-actions/setup@v2

# TODO: add software dependencies here and any libraries

# From https://github.com/actions/setup-python
# - name: Setup Python
# uses: actions/setup-python@v3

# From https://github.com/r-lib/actions/tree/v2-branch/setup-r
# - name: Setup R
# uses: r-lib/actions/setup-r@v2

# From https://github.com/julia-actions/setup-julia
# - name: Setup Julia
# uses: julia-actions/setup-julia@v1

- name: Deploy to GitHub Pages 🚀 # This step commits the contents of the _site folder into the gh-pages branch (which GitHub serves as a website)
if: github.ref == 'refs/heads/main'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
client_secret.json
_site/
.DS_Store*
.jekyll-cache
.quarto
_site
/.quarto/
46 changes: 0 additions & 46 deletions CONTRIBUTING.md

This file was deleted.

207 changes: 0 additions & 207 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 0ce617b

Please sign in to comment.