forked from getzola/zola
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
document installing via github actions (getzola#2097)
- Loading branch information
1 parent
ef0d801
commit f3b0d0c
Showing
1 changed file
with
17 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 |
---|---|---|
|
@@ -116,6 +116,23 @@ To avoid having to type this every time, an alias can be created in `~/.bashrc`: | |
$ alias zola="flatpak run org.getzola.zola" | ||
``` | ||
|
||
### Via Github Actions | ||
|
||
Zola can be installed in a GHA workflow with [taiki-e/install-action](https://github.com/taiki-e/install-action). | ||
Simply add it in your CI config, for example: | ||
|
||
```yaml | ||
jobs: | ||
foo: | ||
steps: | ||
- uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
# ... | ||
``` | ||
|
||
See the action repo for docs and more examples. | ||
|
||
### Docker | ||
|
||
Zola is available on [the GitHub registry](https://github.com/getzola/zola/pkgs/container/zola). | ||
|