Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lorenzoh/pollenjl-actions

GitHub actions for Pollen.jl
https://github.com/lorenzoh/pollenjl-actions

Last synced: 11 days ago
JSON representation

GitHub actions for Pollen.jl

Awesome Lists containing this project

README

        

# pollenjl-actions

## How to setup

Configure the docs/ folder:

```julia
using Pkg
Pkg.activate("./docs/")
Pkg.add([
PackageSpec(url="https://github.com/lorenzoh/ModuleInfo.jl"),
PackageSpec(url="https://github.com/lorenzoh/Pollen.jl", rev="frontend"),
])
```

Add `pollenexport.yml` to the main branch.

Create orphaned `pollen` and `gh-pages` branches.

```bash
git checkout --orphan pollen
git rm -rf .
rm .gitignore
touch .nojekyll
mkdir -p .github/workflows
cp $DIR/pollenbuild.yml ./.github/workflows/
git add .
git commit -m "Set up pollen branch"
git push origin
```