diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index adcbf82..7dee337 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -15,17 +15,17 @@ jobs: - uses: actions/checkout@v6 with: ref: forgejo.ref - - uses: actions/setup-go@v6 - with: - go-version: 'stable' - - run: go version - - run: go install github.com/gohugoio/hugo@latest - - uses: actions/setup-python@v6 - with: - python-version-file: '.python-version' - - run: python --version - - run: pip install -r requirements.txt + - name: Install dependencies + run: apk --no-cache add hugo python3 py3-pip + + - name: Check install + run: | + hugo version + python --version + + - name: Install Python depenndencies + run: python -m pip install -r requirements.txt - name: Render site run: ./build.sh