Merge pull request #1154 from dongjiang1989/envtest-v0.33.0 #66
This file contains hidden or 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 | |
| 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@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@dcc7a0cba800f454d79fff4b993e8c3555bcc0a8 # tag=v45.0.7 | |
| 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@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # tag=v2.2.1 | |
| 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@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # tag=v7.0.7 | |
| 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 |