Skip to content

Commit

Permalink
Fix docker for v12-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Jan 24, 2023
1 parent 0e77692 commit aca918f
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
#
# On every new `vX.Y.Z` tag the following images are pushed:
#
# CosmosContracts/juno:X.Y.Z # is pushed
# CosmosContracts/juno:X.Y # is updated to X.Y.Z
# CosmosContracts/juno:X # is updated to X.Y.Z
# CosmosContracts/juno:latest # is updated to X.Y.Z
# cosmoscontracts/juno:X.Y.Z # is pushed
# cosmoscontracts/juno:X.Y # is updated to X.Y.Z
# cosmoscontracts/juno:X # is updated to X.Y.Z
# cosmoscontracts/juno:latest # is updated to X.Y.Z
#
# CosmosContracts/juno-e2e:X.Y.Z # is pushed
# CosmosContracts/juno-e2e:X.Y # is updated to X.Y.Z
# CosmosContracts/juno-e2e:X # is updated to X.Y.Z
# CosmosContracts/juno-e2e:latest # is updated to X.Y.Z
# cosmoscontracts/juno-e2e:X.Y.Z # is pushed
# cosmoscontracts/juno-e2e:X.Y # is updated to X.Y.Z
# cosmoscontracts/juno-e2e:X # is updated to X.Y.Z
# cosmoscontracts/juno-e2e:latest # is updated to X.Y.Z
#
# On every new `vX.Y.0` tag the following images are pushed:
#
# CosmosContracts/juno-e2e-init-chain:X.Y.0 # is pushed
# CosmosContracts/juno-e2e-init-chain:X.Y # is updated to X.Y.0
# CosmosContracts/juno-e2e-init-chain:X # is updated to X.Y.0
# cosmoscontracts/juno-e2e-init-chain:X.Y.0 # is pushed
# cosmoscontracts/juno-e2e-init-chain:X.Y # is updated to X.Y.0
# cosmoscontracts/juno-e2e-init-chain:X # is updated to X.Y.0
# All the images above have support for linux/amd64 and linux/arm64.
#
# Due to QEMU virtualization used to build multi-platform docker images
Expand Down Expand Up @@ -71,9 +71,9 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/CosmosContracts/juno:${{ env.MAJOR_VERSION }}
ghcr.io/CosmosContracts/juno:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/CosmosContracts/juno:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}
ghcr.io/cosmoscontracts/juno:${{ env.MAJOR_VERSION }}
ghcr.io/cosmoscontracts/juno:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/cosmoscontracts/juno:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}
juno-e2e-images:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -114,9 +114,9 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/CosmosContracts/juno-e2e:${{ env.MAJOR_VERSION }}
ghcr.io/CosmosContracts/juno-e2e:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/CosmosContracts/juno-e2e:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e:${{ env.MAJOR_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}
e2e-init-chain-images:
if: startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '.0')
runs-on: ubuntu-latest
Expand Down Expand Up @@ -160,6 +160,6 @@ jobs:
build-args: |
E2E_SCRIPT_NAME=chain
tags: |
ghcr.io/CosmosContracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}
ghcr.io/CosmosContracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/CosmosContracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}
ghcr.io/cosmoscontracts/juno-e2e-init-chain:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }}

0 comments on commit aca918f

Please sign in to comment.