removes docker from workflow
Some checks failed
build-and-deploy / build (push) Failing after 12s

This commit is contained in:
Drew
2025-04-08 22:59:14 -06:00
parent d9dee3e0af
commit 5a4b3eb6d3

View File

@ -7,24 +7,19 @@ on:
jobs: jobs:
build: build:
runs-on: 'linux_amd64' # Try using standard labels instead of hostname runs-on: 'linux_amd64'
container:
image: klakegg/hugo:ext-ubuntu-latest
steps: steps:
- name: Debug Runner Info
run: |
echo "Runner environment:"
env
echo "Current directory:"
pwd
echo "Docker info:"
docker info || echo "Docker not available"
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Install Hugo
run: |
HUGO_VERSION=0.121.1
wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb
sudo dpkg -i hugo_extended_${HUGO_VERSION}_linux-amd64.deb
- name: Build site - name: Build site
run: hugo --minify run: hugo --minify
env: env: