-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6e6a42
commit c9fb4db
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Cat Manifest | ||
|
||
on: | ||
push: | ||
branches: | ||
- pysm/cat-manifest | ||
workflow_dispatch: # manual trigger for testing | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Julia | ||
uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: '1.10' | ||
|
||
- name: Instantiate Julia environment | ||
run: julia --project=. -e 'using Pkg; Pkg.instantiate()' | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Install jq | ||
run: sudo apt-get install jq | ||
|
||
- name: Cat Manifest | ||
run: cat Manifest.toml | ||
|
||
- name: Restore cached _freeze folder | ||
id: cache-restore | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: | | ||
_freeze/ | ||
key: ${{ runner.os }}-${{ hashFiles('**/Manifest.toml') }} | ||
|
||
- name: Render Quarto site | ||
run: quarto render | ||
|
||
- name: Cat Manifest | ||
run: cat Manifest.toml | ||
|
||
- name: Save _freeze folder | ||
id: cache-save | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: | | ||
_freeze/ | ||
key: ${{ runner.os }}-${{ hashFiles('**/Manifest.toml') }} |