Compare commits

7 Commits

Author SHA1 Message Date
b5d9e10786 Merge branch 'main' of gitea.montgomeryspot.com:adam/cat-memes
All checks were successful
Build Cat Web App Container / build (push) Successful in 14s
2025-11-14 16:50:30 -07:00
cd11a4113f Add go.mod 2025-11-14 16:48:31 -07:00
e6c65689ab Update .gitea/workflows/build-container.yaml
Some checks failed
Build Cat Web App Container / build (push) Failing after 2s
2025-11-14 23:43:35 +00:00
442a22b07b Update .gitea/workflows/build-container.yaml
Some checks failed
Build Cat Web App Container / build (push) Has been cancelled
2025-11-14 23:37:34 +00:00
50f6ea7fad Update .gitea/workflows/build-container.yaml
Some checks failed
Build Cat Web App Container / build (push) Failing after 26s
2025-11-14 23:25:36 +00:00
eebb31becb Update .gitea/workflows/build-container.yaml
Some checks failed
Build Cat Web App Container / build (push) Has been cancelled
2025-11-14 23:20:28 +00:00
b3d6e53e58 Merge pull request 'Add in the app and workflow' (#1) from initial-app into main
Some checks failed
Build Cat Web App Container / build (push) Has been cancelled
Reviewed-on: #1
2025-11-14 23:15:58 +00:00
2 changed files with 8 additions and 5 deletions

View File

@@ -7,17 +7,17 @@ on:
jobs: jobs:
build: build:
runs-on: gitea-runner runs-on: podman
steps: steps:
- name: Checkout code - name: Checkout code
run: | run: |
git clone https://gitea.montgomeryspot.com/myorg/myrepo.git git clone https://gitea.montgomeryspot.com/adam/cat-memes.git
cd myrepo cd cat-memes
- name: Build container image - name: Build container image
run: | run: |
cd myrepo cd cat-memes
podman build -f Containerfile -t myorg/catapp:latest . podman build -f Containerfile -t adam/cat-memes:latest .
# Optional: Push to registry # Optional: Push to registry
# - name: Push to registry # - name: Push to registry

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module catapp
go 1.21