Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Add kantra (and static-report) to release pipeline #296

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
strategy:
fail-fast: true
steps:
- name: static-report
uses: konveyor/release-tools/create-release@main
with:
version: ${{ inputs.version }}
prev_version: ${{ inputs.previous_version }}
repository: konveyor/static-report
ref: ${{ inputs.branch }}
github_token: ${{ secrets.GH_TOKEN }}
- name: wait for static-report
run:
#!/bin/bash
while ! docker pull quay.io/konveyor/static-report:${{ inputs.version }} &> /dev/null; do
sleep 3m
done
docker image inspect quay.io/konveyor/static-report:${{ inputs.version }}
- name: java-analyzer-bundle
uses: konveyor/release-tools/create-release@main
with:
Expand Down Expand Up @@ -79,7 +94,8 @@ jobs:
repository: konveyor/tackle2-addon-analyzer
ref: ${{ inputs.branch }}
github_token: ${{ secrets.GH_TOKEN }}
- run: |
- name: wait for tackle2-addon-analyzer
run: |
#!/bin/bash
while ! docker pull quay.io/konveyor/tackle2-addon-analyzer:${{ inputs.version }} &> /dev/null; do
sleep 3m
Expand All @@ -102,6 +118,8 @@ jobs:
image: konveyor/tackle2-operator
- repo: konveyor/tackle-keycloak-theme
image: konveyor/tackle-keycloak-init
- repo: konveyor/kantra
image: konveyor/kantra
fail-fast: true
steps:
- uses: konveyor/release-tools/create-release@main
Expand Down
Loading