Update .forgejo/workflows/deploy.yaml
Some checks failed
deploy blog / deploy (push) Failing after 0s

Signed-off-by: xengi <cccb-git@xengi.de>
This commit is contained in:
XenGi 2026-02-15 13:04:37 +01:00
parent ead5a73a57
commit 94c189a794

View file

@ -15,17 +15,17 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
with: with:
ref: forgejo.ref 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 - name: Install dependencies
with: run: apk --no-cache add hugo python3 py3-pip
python-version-file: '.python-version'
- run: python --version - name: Check install
- run: pip install -r requirements.txt run: |
hugo version
python --version
- name: Install Python depenndencies
run: python -m pip install -r requirements.txt
- name: Render site - name: Render site
run: ./build.sh run: ./build.sh