HenryV 5610b878e1
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Generate and upload hugo website / generate_and_uplaod_site (push) Failing after 1s
Testing workflow
2025-02-13 10:13:05 +01:00

22 lines
472 B
YAML

---
name: Generate and upload hugo website
on:
push:
jobs:
generate_and_uplaod_site:
runs-on: ubuntu-latest
steps:
- name: Install Go
run: sudo apt install -y golang-go
- name: Preparing the Go compiler
run: echo 'CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest'
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: ls ${{ gitea.workspace }}