Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
loganmarchione committed Nov 4, 2024
1 parent 4c02635 commit ba513f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

env:
HUGO_VERSION: 0.136.5
HUGO_VERSION: '0.136.5'

steps:
- name: Check out the codebase
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: $HUGO_VERSION
hugo-version: ${{ env.HUGO_VERSION }}
extended: true

- name: Build
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest

env:
HUGO_VERSION: 0.136.5
HUGO_VERSION: '0.136.5'

permissions:
id-token: write
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: $HUGO_VERSION
hugo-version: ${{ env.HUGO_VERSION }}
extended: true

- name: Configure AWS credentials
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

env:
HUGO_VERSION: 0.136.5
HUGO_VERSION: '0.136.5'

permissions:
id-token: write
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: $HUGO_VERSION
hugo-version: ${{ env.HUGO_VERSION }}
extended: true

- name: Configure AWS credentials
Expand Down

0 comments on commit ba513f7

Please sign in to comment.