Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nuke old site and replace with new quarto-based one #76

Merged
merged 10 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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