Skip to content

Commit

Permalink
feat: or-1210 modify docker image names
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Talboom committed Sep 19, 2022
1 parent a4d5672 commit b24fb10
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ jobs:
- name: Save Acm Api Image
shell: bash
run: docker image save association-registry/acm-api -o ~/ar-acm-api-image.tar
run: docker image save $BUILD_DOCKER_REGISTRY/association-registry/acm-api:$SEMVER -o ~/ar-acm-api-image.tar
env:
BUILD_DOCKER_REGISTRY: ${{ secrets.VBR_BUILD_DOCKER_REGISTRY_TST }}
SEMVER: ${{ env.RELEASE_VERSION }}

- name: Upload Acm Api artifact
uses: actions/upload-artifact@v3
Expand All @@ -174,7 +177,10 @@ jobs:

- name: Save Public Api Image
shell: bash
run: docker image save association-registry/public-api -o ~/ar-public-api-image.tar
run: docker image save $BUILD_DOCKER_REGISTRY/association-registry/public-api:$SEMVER -o ~/ar-public-api-image.tar
env:
BUILD_DOCKER_REGISTRY: ${{ secrets.VBR_BUILD_DOCKER_REGISTRY_TST }}
SEMVER: ${{ env.RELEASE_VERSION }}

- name: Upload Public Api artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit b24fb10

Please sign in to comment.