Skip to content

Commit

Permalink
Use .tool-versions for GitHub Action
Browse files Browse the repository at this point in the history
This ensures we're deploying with the same versions we're developing with
  • Loading branch information
jjcarstens authored and fhunleth committed Apr 24, 2024
1 parent 8e985cf commit 409fa64
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,29 @@ jobs:
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: versions

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: ${{ steps.versions.outputs.nodejs }}

- name: Install dependencies from NPM
run: npm install

- name: Set Hugo version
id: hugo-version
run: |
ver=$(echo "${{ steps.versions.outputs.hugo }}" | tr -d 'extended_')
echo "HUGO_VERSION=${ver}" >> "${GITHUB_OUTPUT}"
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
hugo-version: ${{ steps.hugo-version.outputs.HUGO_VERSION }}
extended: true # For SCSS

- name: Build
Expand Down

0 comments on commit 409fa64

Please sign in to comment.