Fix: Set width and height attributes for the SVG (#3122) #3355
This file contains hidden or 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
| name: Build site | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| name: Build the site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Repository checkout | |
| uses: actions/checkout@v4 | |
| - name: Download Zola | |
| run: | | |
| version='v0.20.0' | |
| archive="zola-${version}-x86_64-unknown-linux-gnu.tar.gz" | |
| curl -L "https://github.com/getzola/zola/releases/download/${version}/${archive}" -o "$archive" | |
| tar xf "$archive" | |
| - name: Build | |
| run: | | |
| ./zola build |