Skip to content

Commit

Permalink
chore: removed sequence chars
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed May 7, 2024
1 parent 2b1b49d commit a5cf362
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/actions/build_docker_images/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,40 +19,40 @@ secrets:
runs:
using: composite
steps:
- name: [ API ] Build and push Docker ${{ inputs.tag }} image
- name: API - Build and push Docker ${{ inputs.tag }} image
uses: docker/build-push-action@v4
with:
file: ./api/Dockerfile
tags: cardanofoundation/cardano-rosetta-java-api:${{ inputs.tag }}
push: true
- name: [ API ] Build and push Docker latest image
- name: API - Build and push Docker latest image
uses: docker/build-push-action@v4
if: ${{ inputs.isRelease == 'true' }}
with:
file: ./api/Dockerfile
tags: cardanofoundation/cardano-rosetta-java-api:latest
push: true
- name: [ Indexer ] Build and push Docker ${{ inputs.tag }} image
- name: Indexer - Build and push Docker ${{ inputs.tag }} image
uses: docker/build-push-action@v4
with:
file: ./yaci-indexer/Dockerfile
tags: cardanofoundation/cardano-rosetta-java-indexer:${{ inputs.tag }}
push: true
- name: [ Indexer ] Build and push Docker latest image
- name: Indexer - Build and push Docker latest image
uses: docker/build-push-action@v4
if: ${{ inputs.isRelease == 'true' }}
with:
file: ./api/Dockerfile
tags: cardanofoundation/cardano-rosetta-java-indexer:latest
push: true
# TODO will be added when the all-in-one image is ready
# - name: [All-in-one] Build and push Docker image
# - name: All-in-one - Build and push Docker image
# uses: docker/build-push-action@v4
# with:
# file: ./Dockerfile
# tags: cardanofoundation/cardano-rosetta-java:${{ inputs.tag }}
# push: true
# - name: [ All-in-one ] Build and push Docker latest image
# - name: All-in-one - Build and push Docker latest image
# uses: docker/build-push-action@v4
# if: ${{ inputs.isRelease == 'true' }}
# with:
Expand Down

0 comments on commit a5cf362

Please sign in to comment.