Skip to content

Commit

Permalink
Pipeline Actions rollback (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbazhenov authored Sep 20, 2024
1 parent 3b117c3 commit 7bad11b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,22 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.123.7'
hugo-version: '0.110.0'
extended: true

- name: Cache resources
uses: actions/cache@v3
uses: actions/cache@v1
with:
path: resources
key: hugo-resources-${{ runner.os }}-${{ hashFiles('**/resources/**') }}
restore-keys: |
hugo-resources-${{ runner.os }}-
key: hugo-resources
restore-keys: hugo-resources

- name: Cache hugo deb
uses: actions/cache@v3
uses: actions/cache@v1
with:
path: /tmp/hugo.deb
key: hugo-deb-${{ runner.os }}-${{ hashFiles('/tmp/hugo.deb') }}
restore-keys: |
hugo-deb-${{ runner.os }}-
key: hugo-deb
restore-keys: hugo-deb

- name: Build
run: hugo --minify
Expand Down

0 comments on commit 7bad11b

Please sign in to comment.