Skip to content

5.0.5: Release - Build, Deploy & Create Release #16

5.0.5: Release - Build, Deploy & Create Release

5.0.5: Release - Build, Deploy & Create Release #16

Workflow file for this run

name: Release - Build, Deploy & Create Release
run-name: "${{ inputs.releaseVersion }}: Release - Build, Deploy & Create Release"
on:
workflow_dispatch:
inputs:
releaseNotes:
description: "Release Notes - Issues Included in Release"
required: false
type: string
releaseVersion:
description: "The version to be Released (#.#.# | #.#.#-rc#)"
required: true
type: string
jobs:
run_release-template:
name: Release - Build, Deploy & Create Release
uses: SecureApiGateway/secure-api-gateway-ci/.github/workflows/reusable-release.yml@main
secrets: inherit
with:
componentName: secure-api-gateway-fapi-pep-as
dockerTag: $(echo ${{ github.sha }} | cut -c1-7)
releaseNotes: ${{ inputs.releaseNotes }}
releaseVersion: ${{ inputs.releaseVersion }}