feat: enable new devworkspace generator release (#22435) #251
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2021-2023 Red Hat, Inc. | |
# This program and the accompanying materials are made | |
# available under the terms of the Eclipse Public License 2.0 | |
# which is available at https://www.eclipse.org/legal/epl-2.0/ | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
name: Build and push Next Che E2E image to quay.io | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Login to docker.io | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
registry: docker.io | |
- name: Login to quay.io | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
registry: quay.io | |
- name: Build docker images | |
id: build | |
run: | | |
set -xe | |
SHORT_SHA1=$(git rev-parse --short HEAD) | |
echo "short_sha1=${SHORT_SHA1}" >> $GITHUB_OUTPUT | |
cd tests/e2e | |
docker build -t quay.io/eclipse/che-e2e:next -f build/dockerfiles/Dockerfile . | |
docker tag quay.io/eclipse/che-e2e:next quay.io/eclipse/che-e2e:${SHORT_SHA1} | |
- name: Push docker images | |
run: | | |
docker push quay.io/eclipse/che-e2e:next | |
docker push quay.io/eclipse/che-e2e:${{ steps.build.outputs.short_sha1 }} |