Merge pull request #1007 from kengou/envtest-1.30.2 #60
Workflow file for this run
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: Package controller-runtime envtest | |
on: | |
push: | |
branches: | |
- main | |
- master | |
paths: | |
- 'hack/envtest/_matrix/*.yaml' | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@cc733854b1f224978ef800d29e4709d5ee2883e4 # tag=v44.5.5 | |
with: | |
files: | | |
hack/envtest/_matrix/*.yaml | |
- name: Setup package release version | |
id: release-version | |
run: | | |
if [[ ${{ steps.changed-files.outputs.all_changed_files_count }} != 1 ]]; then | |
echo "One Kubernetes patch version files should be changed for a release, found ${{ steps.changed-files.outputs.all_changed_files_count }}" | |
exit 1 | |
fi | |
for changed_file in ${{ steps.changed-files.outputs.all_changed_files }}; do | |
export KUBERNETES_VERSION=$(echo "${changed_file}" | grep -oP '(?<=/)[^/]+(?=\.yaml)') | |
echo "KUBERNETES_VERSION=$KUBERNETES_VERSION" >> $GITHUB_ENV | |
done | |
- name: Build packages | |
run: | | |
make release-envtest KUBERNETES_VERSION=${{ env.KUBERNETES_VERSION }} | |
- name: Release | |
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0 # tag=v2.0.6 | |
with: | |
tag_name: envtest-${{ env.KUBERNETES_VERSION }} | |
draft: false | |
make_latest: false | |
files: | | |
out/envtest-*.tar.gz | |
out/envtest-*.tar.gz.sha512 | |
fail_on_unmatched_files: true | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # tag=v6.1.0 | |
with: | |
commit-message: Promote envtest release for Kubernetes ${{ env.KUBERNETES_VERSION }} | |
title: ":seedling: Promotion of envtest release for Kubernetes ${{ env.KUBERNETES_VERSION }}" | |
body: | | |
This PR promotes the envtest release for Kubernetes ${{ env.KUBERNETES_VERSION }}. | |
branch: promote-envtest-${{ env.KUBERNETES_VERSION }} | |
add-paths: | | |
envtest-releases.yaml |