diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml new file mode 100644 index 0000000..499344a --- /dev/null +++ b/.gitea/workflows/cicd.yaml @@ -0,0 +1,24 @@ +name: CICD +run-name: ${{ gitea.actor }} triggered CICD +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: my_custom_label + container: node:22 + steps: + - uses: actions/checkout@v3 # Checks out your repository + - name: Install Hugo + run: | + whoami + which hugo || true + apt update + cat /etc/os-release + apt install -y ca-certificates curl gnupg + snap install hugo + - name: Build Hugo + run: | + ehugo build + - name: Sunc to AWS + run: | + which aws || true \ No newline at end of file diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md index a6e1dfc..0bdf4d9 100644 --- a/content/posts/hello-world.md +++ b/content/posts/hello-world.md @@ -4,5 +4,10 @@ draft = false title = 'Hello World' +++ -Hello World +This is my first published post using CICD. +I am just now looking to set this up with Forgejo or Gitea. + +Here is a T-Rex playing hockey: + +![test01](/images/2026-06-test.png) \ No newline at end of file diff --git a/static/images/2026-06-test.png b/static/images/2026-06-test.png new file mode 100644 index 0000000..d233fdd Binary files /dev/null and b/static/images/2026-06-test.png differ