Skip to content

Commit e220615

Browse files
committed
build: test iteration
1 parent a9da724 commit e220615

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build_async.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build docker image for amd64 and arm64
1+
name: Build ASYNC
22

33
on:
44
workflow_dispatch:
@@ -20,15 +20,15 @@ jobs:
2020
id: compute-tags
2121
run: |
2222
PACKAGE_VERSION=$(cat package.json | jq -r '.version')
23-
DOCKER_HUB_TAG_BASE=dockerhubrepo/${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
23+
DOCKER_HUB_TAG_BASE=async/${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
2424
DOCKER_HUB_TAG_LATEST=${DOCKER_HUB_TAG_BASE}-latest
2525
if [ "${{github.ref_name}}" = "prod" ]; then
2626
DOCKER_HUB_TAG_VERSION=${DOCKER_HUB_TAG_BASE}-${PACKAGE_VERSION}
2727
else
2828
DOCKER_HUB_TAG_VERSION=""
2929
fi
30-
echo "::set-output name=tag_latest::${DOCKER_HUB_TAG_LATEST}"
31-
echo "::set-output name=tag_version::${DOCKER_HUB_TAG_VERSION}"
30+
echo "tag_latest=${DOCKER_HUB_TAG_LATEST}" >> $GITHUB_OUTPUT
31+
echo "tag_version=${DOCKER_HUB_TAG_VERSION}" >> $GITHUB_OUTPUT
3232
3333
build_amd64:
3434
runs-on: ubuntu-latest

.github/workflows/build_sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build image and push on repository
1+
name: Build SYNC
22

33
on:
44
workflow_dispatch:
@@ -25,7 +25,7 @@ jobs:
2525
id: compute-tags
2626
run: |
2727
PACKAGE_VERSION=$(cat package.json | jq -r '.version')
28-
DOCKER_HUB_TAG_BASE=${{secrets.DOCKERHUB_USERNAME}}/${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
28+
DOCKER_HUB_TAG_BASE=sync/${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
2929
DOCKER_HUB_TAG_LATEST=${DOCKER_HUB_TAG_BASE}-latest
3030
# Conditional version tag (only for prod)
3131
if [ "${{github.ref_name}}" = "prod" ]; then

0 commit comments

Comments
 (0)