7 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
Guillermo
7a931d32ba Update actions
Some checks failed
Tag Release / new images (release) Failing after 12s
2026-02-17 10:39:24 +00:00
01853b41ba two steps
All checks were successful
Tag Release / new images (release) Successful in 4s
2026-02-16 16:59:16 +00:00
8c2ffaae55 typo? 2026-02-16 16:57:23 +00:00
2 changed files with 42 additions and 15 deletions

View File

@@ -16,16 +16,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Extract Tag Name
uses: olegtarasov/get-tag@v2.1.4
id: tagName
- name: Echo branch name
run: echo "${{ env.BRANCH_NAME }}"
#- name: Setup QEMU
# uses: docker/setup-qemu-action@v3
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
with:
@@ -45,7 +35,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: frontend
push: true
push: false
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ env.BRANCH_NAME }}
platforms: linux/amd64
file: frontend/Dockerfile
@@ -54,7 +44,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: backend
push: true
push: false
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:${{ env.BRANCH_NAME }}
platforms: linux/amd64
file: backend/Dockerfile

View File

@@ -4,12 +4,49 @@ on:
release:
types: [created,edited,published]
env:
DOCKER_ORG: beyondcx
jobs:
create new images with tag:
new images:
runs-on: ubuntu-latest
steps:
- name: Extract Tag Name
uses: olegtarasov/get-tag@v2.1.4
id: tagName
- name: Show tag
run: echo "$GIT_TAG_NAME";
- name: Checkout
uses: actions/checkout@v4
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PWD }}
- name: Build frontend and push it to registry
uses: docker/build-push-action@v5
with:
context: frontend
push: true
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ steps.tagName.outputs.tag }}
platforms: linux/amd64
file: frontend/Dockerfile
- name: Build backend and push it to registry
uses: docker/build-push-action@v5
with:
context: backend
push: true
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:${{ steps.tagName.outputs.tag }}
platforms: linux/amd64
file: backend/Dockerfile