Compare commits

...
11 Commits
Author SHA1 Message Date
jat 20114cda5c Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Successful in 14s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
Build, Test and Register Docker Images / build-publish-frontend (pull_request) Successful in 13s
Build, Test and Register Docker Images / reload-staging (pull_request) Has been skipped
2025-07-09 19:23:13 +00:00
jat 970e880f7f Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 18s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-07-09 19:19:00 +00:00
jat 6a6d969691 Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Successful in 14s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-07-09 19:17:33 +00:00
jat 05022be417 Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 16s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-07-09 19:14:43 +00:00
jat 41acfa3972 Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 18s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-07-09 19:11:58 +00:00
jat d3d18596d8 Update .gitea/workflows/test_and_build.yml
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 13s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-07-09 19:08:47 +00:00
jat c876d1f9c3 no context
Build, Test and Register Docker Images / build-publish-frontend (push) Successful in 12s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
Build, Test and Register Docker Images / build-publish-frontend (pull_request) Successful in 13s
Build, Test and Register Docker Images / reload-staging (pull_request) Has been skipped
2025-06-30 22:38:26 +02:00
jat 3edd1db8d4 node dep
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 15s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-06-30 22:21:52 +02:00
jat 1bf339304e Update README.md
Build, Test and Register Docker Images / build-publish-frontend (push) Failing after 6s
Build, Test and Register Docker Images / reload-staging (push) Has been skipped
2025-06-30 20:19:18 +00:00
jat 5a369e823d Update README.md 2025-06-30 20:14:16 +00:00
jat dadf8382f4 test branches 2025-06-30 22:13:13 +02:00
2 changed files with 53 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
name: Build, Test and Register Docker Images
on:
push:
branches:
- main
- production
pull_request:
types: [closed]
branches:
- production
jobs:
build-publish-frontend:
runs-on: coc
container:
image: docker
steps:
- name: Install node
run: apk add nodejs
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: cocgit.scalingdone.com
username: ${{ secrets.RUNNER_REGISTRY_USERNAME }}
password: ${{ secrets.RUNNER_REGISTRY_PASSWORD }}
- name: Build Docker image
uses: docker/build-push-action@v6
with:
push: true
tags: |
cocgit.scalingdone.com/jat/branchingtest/appimage:latest
${{ github.ref == 'refs/heads/production' && 'cocgit.scalingdone.com/jat/branchingtest/appimage:production' || '' }}
${{ github.ref == 'refs/heads/production' && format('cocgit.scalingdone.com/jat/branchingtest/appimage:{0}', github.sha) || '' }}
reload-staging:
if: github.ref == 'refs/heads/production'
runs-on: coc
container:
image: curlimages/curl
networks:
- coc
needs:
- build-publish-frontend
steps:
- name: Trigger Watchtower to reload docker image
run: |
echo "hi"
+1
View File
@@ -0,0 +1 @@
FROM alpine:latest