Skip to content

Tag image with hash instead of next #3

Tag image with hash instead of next

Tag image with hash instead of next #3

Workflow file for this run

#
# Copyright (c) 2020 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 image
on:
push:
branches:
- 'main'
workflow_dispatch:
inputs:
reason:
description: 'Reason to trigger'
required: false
jobs:
multiplatform-image-build:
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to quay.io
uses: docker/login-action@v2
with:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
registry: quay.io
- name: Check existing tags
run: COMMIT_HASH=$(git rev-parse --short HEAD)
- name: Build images
uses: docker/build-push-action@v3
with:
file: Dockerfile
platforms: linux/amd64,linux/ppc64le,linux/arm64
tags: quay.io/eclipse/che-tls-secret-creator:${COMMIT_HASH}
push: true