From ccb06ec48915fdbed4c9bbfddbd8194789744991 Mon Sep 17 00:00:00 2001 From: Richard Oswald Date: Fri, 6 Jun 2025 12:29:37 -0500 Subject: [PATCH] fifth post --- .gitea/workflows/{demo.yml => hugo-build.yml} | 15 +++------------ content/posts/my-fifth-post.md | 11 +++++++++++ .../{my-fourth-post copy.md => my-fourth-post.md} | 0 3 files changed, 14 insertions(+), 12 deletions(-) rename .gitea/workflows/{demo.yml => hugo-build.yml} (53%) create mode 100644 content/posts/my-fifth-post.md rename content/posts/{my-fourth-post copy.md => my-fourth-post.md} (100%) diff --git a/.gitea/workflows/demo.yml b/.gitea/workflows/hugo-build.yml similarity index 53% rename from .gitea/workflows/demo.yml rename to .gitea/workflows/hugo-build.yml index 9bda0a6..683a148 100644 --- a/.gitea/workflows/demo.yml +++ b/.gitea/workflows/hugo-build.yml @@ -6,24 +6,15 @@ jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - - name: Check out repository code + - name: Check out code uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - name: List files in the repository pre - run: | - ls ${{ gitea.workspace }} - - name: Setup Hugo + - name: Install Hugo uses: peaceiris/actions-hugo@v3 with: hugo-version: 'latest' # extended: true - name: Build - run: hugo --minify - - name: List files in the repository post - run: | - ls ${{ gitea.workspace }} - - name: tree - run: sudo apt update; sudo apt -y install tree; tree - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + run: hugo --minify \ No newline at end of file diff --git a/content/posts/my-fifth-post.md b/content/posts/my-fifth-post.md new file mode 100644 index 0000000..356d7a0 --- /dev/null +++ b/content/posts/my-fifth-post.md @@ -0,0 +1,11 @@ ++++ +date = '2025-05-18T15:04:56-05:00' +draft = false +title = 'Hello World 5!' ++++ + +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! \ No newline at end of file diff --git a/content/posts/my-fourth-post copy.md b/content/posts/my-fourth-post.md similarity index 100% rename from content/posts/my-fourth-post copy.md rename to content/posts/my-fourth-post.md