Skip to content

Commit d399c7b

Browse files
committed
Refactor Zola
1 parent a6a74ef commit d399c7b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@ jobs:
3939
echo "Files changed in this pr: ${{ steps.changed-files.outputs.changed_files }}"
4040
linkspector check ${{ steps.changed-files.outputs.changed_files }}
4141
- name: Install Zola
42-
run: curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
43-
- run: ./zola --version
44-
- run: ./zola build
42+
run: |
43+
curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
44+
echo "Zola version: $(./zola --version)"
45+
- name: Zola build
46+
run: ./zola build
4547
- name: Deploy
4648
if: github.ref == 'refs/heads/source'
4749
uses: crazy-max/ghaction-github-pages@v1

0 commit comments

Comments
 (0)