Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into as/08-mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Sep 22, 2024
2 parents 8d7da19 + e0d39ed commit 01e4eca
Show file tree
Hide file tree
Showing 7 changed files with 192 additions and 46 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/clear_cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Clear cache

on:
workflow_dispatch:

permissions:
actions: write

jobs:
clear-cache:
runs-on: ubuntu-latest
steps:
- name: Clear cache
uses: actions/github-script@v6
with:
script: |
console.log("About to clear")
const caches = await github.rest.actions.getActionsCacheList({
owner: context.repo.owner,
repo: context.repo.repo,
})
for (const cache of caches.data.actions_caches) {
console.log(cache)
github.rest.actions.deleteActionsCacheById({
owner: context.repo.owner,
repo: context.repo.repo,
cache_id: cache.id,
})
}
console.log("Clear completed")
89 changes: 45 additions & 44 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,46 +1,47 @@
on:
workflow_dispatch:
push:
branches:
[main]
pull_request:
name: Quarto Publish
jobs:
bookdown:
name: GH-Pages
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/cache@v2
- name: Set up custom Julia dependencies
run: |
using Pkg
Pkg.activate("quarto"; shared = true)
# TODO: QuartoNotebookRunner does not support execute-dir yet, but this PR does.
Pkg.add(url = "https://github.com/asinghvi17/QuartoNotebookRunner.jl", rev = "as/execute-dir")
Pkg.instantiate()
Pkg.activate(".")
Pkg.add([
# TODO: DimensionalData v0.28 is not compatible with Rasters latest version,
# and has Makie fixes that we need for the book, otherwise plotting errors out.
# These can be removed after Rasters.jl's new breaking version.
PackageSpec(url = "https://github.com/asinghvi17/Rasters.jl", rev = "as/dd28"),
PackageSpec(url = "https://github.com/rafaqz/DimensionalData.jl", rev = "main"),
])
shell: julia {0}
- uses: julia-actions/julia-buildpkg@v1
# on:
# workflow_dispatch:
# push:
# branches:
# [main]
# pull_request:
# name: Quarto Publish
# jobs:
# bookdown:
# name: GH-Pages
# runs-on: ubuntu-latest
# permissions:
# contents: write
# statuses: write
# steps:
# - uses: actions/checkout@v3
# - uses: julia-actions/setup-julia@v2
# - uses: julia-actions/cache@v2
# - name: Set up custom Julia dependencies
# run: |
# using Pkg
# Pkg.activate("quarto"; shared = true)
# # TODO: QuartoNotebookRunner does not support execute-dir yet, but this PR does.
# Pkg.add(url = "https://github.com/asinghvi17/QuartoNotebookRunner.jl", rev = "as/execute-dir")
# Pkg.instantiate()
# Pkg.activate(".")
# Pkg.add([
# # TODO: DimensionalData v0.28 is not compatible with Rasters latest version,
# # and has Makie fixes that we need for the book, otherwise plotting errors out.
# # These can be removed after Rasters.jl's new breaking version.
# PackageSpec(url = "https://github.com/asinghvi17/Rasters.jl", rev = "as/dd28"),
# PackageSpec(url = "https://github.com/rafaqz/DimensionalData.jl", rev = "main"),
# ])
# shell: julia {0}
# - uses: julia-actions/julia-buildpkg@v1

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
env:
QUARTO_JULIA_PROJECT: "@quarto"
# - name: Set up Quarto
# uses: quarto-dev/quarto-actions/setup@v2
# env:
# QUARTO_JULIA_PROJECT: "@quarto"

- name: Render and Publish
run: julia helpers/deploy_with_preview.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QUARTO_JULIA_PROJECT: "@quarto"
DATAFRAMES_ROWS: "6"
# - name: Render and Publish
# run: julia helpers/deploy_with_preview.jl
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# QUARTO_JULIA_PROJECT: "@quarto"
# DATAFRAMES_ROWS: "6"
45 changes: 45 additions & 0 deletions .github/workflows/main_new.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
on:
workflow_dispatch:
push:
branches:
[main]
name: Quarto Publish
jobs:
quarto:
name: GH-Pages
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/cache@v2
- name: Set up custom Julia dependencies
run: |
using Pkg
Pkg.activate("quarto"; shared = true)
# TODO: QuartoNotebookRunner does not support execute-dir yet, but this PR does.
Pkg.add(url = "https://github.com/asinghvi17/QuartoNotebookRunner.jl", rev = "as/execute-dir")
Pkg.instantiate()
Pkg.activate(".")
Pkg.add([
# TODO: DimensionalData v0.28 is not compatible with Rasters latest version,
# and has Makie fixes that we need for the book, otherwise plotting errors out.
# These can be removed after Rasters.jl's new breaking version.
PackageSpec(url = "https://github.com/asinghvi17/Rasters.jl", rev = "as/dd28"),
PackageSpec(url = "https://github.com/rafaqz/DimensionalData.jl", rev = "main"),
])
shell: julia {0}
- uses: julia-actions/julia-buildpkg@v1

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
env:
QUARTO_JULIA_PROJECT: "@quarto"

- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: netlify
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
66 changes: 66 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
on:
workflow_dispatch:
pull_request:
branches:
[main]
name: Quarto PR Publish
jobs:
bookdown:
name: GH-Pages
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
pull-requests: write
deployments: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/cache@v2
- name: Set up custom Julia dependencies
run: |
using Pkg
Pkg.activate("quarto"; shared = true)
# TODO: QuartoNotebookRunner does not support execute-dir yet, but this PR does.
Pkg.add(url = "https://github.com/asinghvi17/QuartoNotebookRunner.jl", rev = "as/execute-dir")
Pkg.instantiate()
Pkg.activate(".")
Pkg.add([
# TODO: DimensionalData v0.28 is not compatible with Rasters latest version,
# and has Makie fixes that we need for the book, otherwise plotting errors out.
# These can be removed after Rasters.jl's new breaking version.
PackageSpec(url = "https://github.com/asinghvi17/Rasters.jl", rev = "as/dd28"),
PackageSpec(url = "https://github.com/rafaqz/DimensionalData.jl", rev = "main"),
])
shell: julia {0}
- uses: julia-actions/julia-buildpkg@v1

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
env:
QUARTO_JULIA_PROJECT: "@quarto"

- name: Render
uses: quarto-dev/quarto-actions/render@v2
with:
to: html

- name: Deploy Preview to Netlify as preview
id: netlify-deploy
uses: nwtgck/actions-netlify@v3
env:
NETLIFY_SITE_ID: e18690e5-215e-4584-b0f1-963bc99a10d0
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
with:
publish-dir: './docs'
production-deploy: false
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: |
Deploy from GHA: ${{ github.event.pull_request.title || format('manual from PR {0}', github.event.issue.number) }}
alias: deploy-preview-${{ github.event.pull_request.number || github.event.issue.number }}
# these all default to 'true'
enable-pull-request-comment: true
enable-commit-comment: false
enable-commit-status: true
overwrites-pull-request-comment: false
timeout-minutes: 1
4 changes: 4 additions & 0 deletions _publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- source: project
netlify:
- id: "e18690e5-215e-4584-b0f1-963bc99a10d0"
url: "https://jl.geocompx.org"
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ book:
- chapters/02-attribute-operations.qmd
- chapters/03-spatial-operations.qmd
- chapters/04-geometry-operations.qmd
- chapters/05-raster-vector.qmd
#- chapters/05-raster-vector.qmd
- chapters/06-reproj.qmd
- chapters/07-read-write.qmd
- chapters/08-mapping.qmd
Expand Down
2 changes: 1 addition & 1 deletion chapters/01-spatial-data.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mkpath("output")
## Introduction
```{julia}
using GeoDataFrames
df = GeoDataFrames.read("data/world.gpkg")
df = GeoDataFrames.read("../data/world.gpkg")
```

```{julia}
Expand Down

0 comments on commit 01e4eca

Please sign in to comment.