We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a74ef commit d399c7bCopy full SHA for d399c7b
.github/workflows/ci.yml
@@ -39,9 +39,11 @@ jobs:
39
echo "Files changed in this pr: ${{ steps.changed-files.outputs.changed_files }}"
40
linkspector check ${{ steps.changed-files.outputs.changed_files }}
41
- 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
+ run: |
+ curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
+ echo "Zola version: $(./zola --version)"
45
+ - name: Zola build
46
+ run: ./zola build
47
- name: Deploy
48
if: github.ref == 'refs/heads/source'
49
uses: crazy-max/ghaction-github-pages@v1
0 commit comments