Some checks failed
Blog Generation / Explore-Gitea-Actions (push) Failing after 7s
18 lines
618 B
YAML
18 lines
618 B
YAML
name: Blog Generation
|
|
run-name: test site generation
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- run: docker pull ghcr.io/gohugoio/hugo:v0.154.5
|
|
- run: docker run -v ${PWD}:/src ghcr.io/gohugoio/hugo:v0.154.5 build
|