Skip to content

build(2.4.0-alpha.2): bump version and update docs #34

build(2.4.0-alpha.2): bump version and update docs

build(2.4.0-alpha.2): bump version and update docs #34

Workflow file for this run

###############################################################
# Copyright (c) 2022 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
###############################################################
name: Release
on:
push:
tags:
- 'v*.*.*'
- '!v*.*.*-RC*'
- '!v*.*.*-iam*'
- '!v*.*.*-framework*'
workflow_dispatch:
jobs:
release-images:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
include:
- image: tractusx/portal-administration-service
dockerfile: ./docker/Dockerfile-administration-service
dockernotice: ./docker/notice-administration-service.md
- image: tractusx/portal-registration-service
dockerfile: ./docker/Dockerfile-registration-service
dockernotice: ./docker/notice-registration-service.md
- image: tractusx/portal-marketplace-app-service
dockerfile: ./docker/Dockerfile-marketplace-app-service
dockernotice: ./docker/notice-marketplace-app-service.md
- image: tractusx/portal-services-service
dockerfile: ./docker/Dockerfile-services-service
dockernotice: ./docker/notice-services-service.md
- image: tractusx/portal-notification-service
dockerfile: ./docker/Dockerfile-notification-service
dockernotice: ./docker/notice-notification-service.md
- image: tractusx/portal-processes-worker
dockerfile: ./docker/Dockerfile-processes-worker
dockernotice: ./docker/notice-processes-worker.md
- image: tractusx/portal-maintenance-service
dockerfile: ./docker/Dockerfile-maintenance-service
dockernotice: ./docker/notice-maintenance-service.md
- image: tractusx/portal-portal-migrations
dockerfile: ./docker/Dockerfile-portal-migrations
dockernotice: ./docker/notice-portal-migrations.md
- image: tractusx/portal-provisioning-migrations
dockerfile: ./docker/Dockerfile-provisioning-migrations
dockernotice: ./docker/notice-provisioning-migrations.md
- image: tractusx/portal-iam-seeding
dockerfile: ./docker/Dockerfile-iam-seeding
dockernotice: ./docker/notice-iam-seeding.md
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
- name: Docker meta
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
with:
images: ${{ matrix.image }}
# Automatically prepare image tags;
# semver patter will generate tags like these for example :v1 :v1.2
tags: |
type=raw,value=latest
type=raw,value=${{ github.ref_name }}
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}
type=semver,pattern=v{{major}}.{{minor}}
- name: Build and push Docker images
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: linux/amd64, linux/arm64
pull: true
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# https://github.com/peter-evans/dockerhub-description
- name: Update Docker Hub description
if: github.event_name != 'pull_request'
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: ${{ matrix.image }}
readme-filepath: ${{ matrix.dockernotice }}
auth-and-dispatch:
needs: release-images
runs-on: ubuntu-latest
steps:
- name: Set env
run: echo "RELEASE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Check for hotfix version
id: hf-check
run: |
hf=$(git ls-remote --heads origin "hotfix/${{ github.ref_name }}*")
if [[ -n "$hf" ]]; then
echo "hf=true" >> $GITHUB_OUTPUT
else
echo "hf=false" >> $GITHUB_OUTPUT
fi
- name: Get tags
run: git fetch --tags --force
if: steps.hf-check.outputs.hf == 'false'
- name: Check for previous release candidate version
id: rc-check
run: |
rc=$(git tag -l "${{ github.ref_name }}-RC*")
if [[ -n "$rc" ]]; then
echo "rc=true" >> $GITHUB_OUTPUT
else
echo "rc=false" >> $GITHUB_OUTPUT
fi
if: steps.hf-check.outputs.hf == 'false'
- name: Determine branch to update in portal repository
id: cd-branch
run: |
if [[ ${{ steps.rc-check.outputs.rc }} == 'true' ]]; then
echo "branch=release-candidate" >> $GITHUB_OUTPUT
else
echo "branch=main" >> $GITHUB_OUTPUT
fi
if: steps.hf-check.outputs.hf == 'false'
- name: Get token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@8e4e6fbf6fcc8a272781d97597969d21b3812974 # v4.0.0
with:
application_id: ${{ secrets.ORG_PORTAL_DISPATCH_APPID }}
application_private_key: ${{ secrets.ORG_PORTAL_DISPATCH_KEY }}
if: steps.hf-check.outputs.hf == 'false'
- name: Trigger workflow
id: call_action
env:
TOKEN: ${{ steps.get_workflow_token.outputs.token }}
run: |
curl -v \
--request POST \
--url https://api.github.com/repos/eclipse-tractusx/portal/actions/workflows/portal-backend-release-image-update.yml/dispatches \
--header "authorization: Bearer $TOKEN" \
--header "Accept: application/vnd.github.v3+json" \
--data '{"ref":"${{ steps.cd-branch.outputs.branch }}", "inputs": { "new-image":"${{ github.ref_name }}" }}' \
--fail
if: steps.hf-check.outputs.hf == 'false'