Skip to content

Commit

Permalink
[CI] Add GitHub Action to push docker images (#4182)
Browse files Browse the repository at this point in the history
* update OSMOSIS_E2E_UPGRADE_VERSION variable in .vscode/launch.json

* test osmosis_e2e docker

* test osmosis_e2e docker

* e2e: Write node Docker container logs to a file (#4118)

* Write node Docker container logs to a file

* add documentation

* add documentation

* update (#6)

* update OSMOSIS_E2E_UPGRADE_VERSION variable in .vscode/launch.json (#4173)

* e2e: Write node Docker container logs to a file (#4118)

* Write node Docker container logs to a file

* add documentation

* add documentation

---------

Co-authored-by: ducnt131 <62016666+anhductn2001@users.noreply.github.com>

* test osmosis_e2e docker

* test osmosis_e2e docker

* #4070

* Update push-dev-docker-images.yml

---------

Co-authored-by: ducnt131 <62016666+anhductn2001@users.noreply.github.com>
(cherry picked from commit 0dbb56a)
  • Loading branch information
MasterPi-2124 authored and mergify[bot] committed Feb 1, 2023
1 parent 6b742c8 commit 9ba5b75
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/push-dev-docker-images.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow pushes new osmosis docker images on:
# This workflow pushes new docker images to osmolabs/osmosis-dev and osmolabs/osmosis-e2e-init-chain on these events:
#
# 1. Every new tag containing a release candidate (e.g. `v1.2.3-rc4`).
# `osmolabs/osmosis-dev:1.2.3-rc4` is pushed.
Expand All @@ -12,7 +12,7 @@
# All the images above have support for linux/amd64 (not linux/arm64).
# All the images are based on an alpine image for easy debugging.

name: Push Development Docker Images
name: Push Dev and E2E Images to Docker

on:
push:
Expand All @@ -24,7 +24,8 @@ on:

env:
RUNNER_BASE_IMAGE_ALPINE: alpine:3.16
DOCKER_IMAGE_REPOSITORY: osmolabs/osmosis-dev
OSMOSIS_DEV_IMAGE_REPOSITORY: osmolabs/osmosis-dev
OSMOSIS_INIT_CHAIN_IMAGE_REPOSITORY: osmolabs/osmosis-e2e-init-chain

jobs:
docker:
Expand Down Expand Up @@ -77,4 +78,5 @@ jobs:
GIT_VERSION=${{ env.OSMOSIS_VERSION }}
GIT_COMMIT=${{ github.sha }}
tags: |
${{ env.DOCKER_IMAGE_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }}
${{ env.OSMOSIS_DEV_IMAGE_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }}
${{ env.OSMOSIS_INIT_CHAIN_IMAGE_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }}

0 comments on commit 9ba5b75

Please sign in to comment.