Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lorenzoh/pollenjl-actions
- Owner: lorenzoh
- Created: 2022-02-03T13:41:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T07:16:12.000Z (almost 3 years ago)
- Last Synced: 2024-11-11T16:44:14.347Z (2 months ago)
- Language: Julia
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```