Skip to content

Commit

Permalink
Merge pull request #5 from TheJacksonLaboratory/gh-action-render-publish
Browse files Browse the repository at this point in the history
adds github action workflow
  • Loading branch information
erickmartins authored Oct 8, 2024
2 parents 5e86b56 + 2d59da8 commit 11838b7
Show file tree
Hide file tree
Showing 40 changed files with 27 additions and 12,165 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Render and Publish
on:
push:
branches:
- main # changes pushed to this branch will trigger a build.

jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
version: 1.5.57

- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages # renderred html files will be pushed here
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/.quarto/
docs/
Loading

0 comments on commit 11838b7

Please sign in to comment.