Release #9
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
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Release version (tag)' | |
default: 1.4.0 | |
required: true | |
type: string | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write # Enable OIDC | |
env: | |
# Output logs to file in case we need to inspect errors. | |
GITSIGN_LOG: "/tmp/gitsign.log" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.RHACS_BOT_GITHUB_TOKEN }} | |
- uses: chainguard-dev/actions/setup-gitsign@main | |
- name: Setup git user | |
env: | |
GITHUB_USERNAME: ${{ secrets.RHACS_BOT_GITHUB_USERNAME }} | |
GITHUB_EMAIL: ${{ secrets.RHACS_BOT_GITHUB_EMAIL }} | |
run: | | |
git config --global user.email "${GITHUB_EMAIL}" | |
git config --global user.name "${GITHUB_USERNAME}" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'maven' | |
- name: Prepare Release | |
run: > | |
cd 'stackrox-container-image-scanner/' && | |
./mvnw -B | |
-DreleaseVersion=${{ inputs.tag }} | |
-DdevelopmentVersion=${{ inputs.tag }}-SNAPSHOT | |
-Dtag=${{ inputs.tag }} | |
release:prepare | |
- name: Write maven settings | |
env: | |
SETTINGS: ${{ secrets.M2_SETTINGS }} | |
shell: bash | |
run: 'echo "$SETTINGS" > ${HOME}/.m2/settings.xml' | |
- name: Perform Release | |
run: cd 'stackrox-container-image-scanner/' && ./mvnw -B release:perform | |
- name: Debug log | |
if: failure() | |
run: cat ${GITSIGN_LOG} |