From ba513f72992084c2d60ed4f494c989e38c1c0251 Mon Sep 17 00:00:00 2001 From: Logan Marchione Date: Mon, 4 Nov 2024 15:27:17 -0500 Subject: [PATCH] Fix workflows --- .github/workflows/development.yml | 8 ++++---- .github/workflows/production.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index a469b43..7ac0d06 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -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 @@ -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 @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.136.5 + HUGO_VERSION: '0.136.5' permissions: id-token: write @@ -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 diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index f2f5fef..1bf1f22 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.136.5 + HUGO_VERSION: '0.136.5' permissions: id-token: write @@ -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