4 Commits

Author SHA1 Message Date
Guillermo
15ed12f0c6 wrong copy and paste
All checks were successful
Tag Release / new images (release) Successful in 1m6s
2026-02-17 11:08:35 +00:00
5b3bd631cb typo fixed
Some checks failed
Tag Release / new images (release) Failing after 10s
2026-02-17 10:50:41 +00:00
Guillermo
3ea406044b change docker image tag build process
Some checks failed
Tag Release / new images (release) Failing after 11s
2026-02-17 10:47:11 +00:00
Guillermo
4cd49d8c9a change docker image tag build process 2026-02-17 10:42:21 +00:00

View File

@@ -4,6 +4,9 @@ on:
release:
types: [created,edited,published]
env:
DOCKER_ORG: beyondcx
jobs:
new images:
runs-on: ubuntu-latest
@@ -34,7 +37,7 @@ jobs:
with:
context: frontend
push: true
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:$GIT_TAG_NAME
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ steps.tagName.outputs.tag }}
platforms: linux/amd64
file: frontend/Dockerfile
@@ -43,7 +46,7 @@ jobs:
with:
context: backend
push: true
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:$GIT_TAG_NAME
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:${{ steps.tagName.outputs.tag }}
platforms: linux/amd64
file: backend/Dockerfile