Skip to content

Commit

Permalink
Remove docker tag commands
Browse files Browse the repository at this point in the history
Docker image is tagged in node-build action
  • Loading branch information
rpoet-jh committed Dec 3, 2024
1 parent d66926d commit 0acab17
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
wget $ENV_FILE
shell: bash

- name: Build local image
- name: Build Release image
uses: eclipse-pass/main/.github/actions/node-build@main
with:
repository_dir: ${{ github.workspace }}
Expand All @@ -60,13 +60,12 @@ jobs:

- name: Retag and push
run: |
docker tag $DOCKER_IMAGE_NAME:${{ inputs.releaseversion }}
docker push $DOCKER_IMAGE_NAME:${{ inputs.releaseversion }}
- name: Update project version
run: pnpm version --new-version ${{ inputs.nextversion }}

- name: Build local image
- name: Build Next Version image
uses: eclipse-pass/main/.github/actions/node-build@main
with:
repository_dir: ${{ github.workspace }}
Expand All @@ -83,5 +82,4 @@ jobs:

- name: Push next dev version image
run: |
docker tag $DOCKER_IMAGE_NAME:${{ inputs.nextversion }}
docker push $DOCKER_IMAGE_NAME:${{ inputs.nextversion }}

0 comments on commit 0acab17

Please sign in to comment.