diff options
| author | Christian Cleberg <[email protected]> | 2024-06-23 17:53:13 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-23 17:53:13 +0000 |
| commit | a3a0b8a6e0bdf5a492d7c13cb9bd769118223dbe (patch) | |
| tree | b9357f5cb68fd4de2fd1e58fb79168d8b9e43193 | |
| parent | 8e993f411805c5428d7ee848cc4946bcf99ad8c6 (diff) | |
| download | cleberg.net-a3a0b8a6e0bdf5a492d7c13cb9bd769118223dbe.tar.gz cleberg.net-a3a0b8a6e0bdf5a492d7c13cb9bd769118223dbe.tar.bz2 cleberg.net-a3a0b8a6e0bdf5a492d7c13cb9bd769118223dbe.zip | |
Add Zola build process
| -rw-r--r-- | .github/workflows/azure-static-web-apps-polite-tree-0f2fa1d10.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/azure-static-web-apps-polite-tree-0f2fa1d10.yml b/.github/workflows/azure-static-web-apps-polite-tree-0f2fa1d10.yml index cc3cb8a..e6f12c5 100644 --- a/.github/workflows/azure-static-web-apps-polite-tree-0f2fa1d10.yml +++ b/.github/workflows/azure-static-web-apps-polite-tree-0f2fa1d10.yml @@ -15,6 +15,15 @@ jobs: runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
+ - name: Install Zola
+ run: |
+ set -x
+ wget -O - \
+ "https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" \
+ | sudo tar xzf - -C /usr/local/bin
+ - name: Build with Zola
+ run: |
+ zola build
- uses: actions/checkout@v4
with:
submodules: true
|
