Merge pull request #17834 from a110605/issue_55610 #3213
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: Build Dashboard (Branch) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'release-*' | |
| - '*-dev' | |
| # v${RANCHER_VERSION}-hotfix-ch-${COUNTER}-${HASH} | |
| - 'v*-hotfix-ch-*-*' | |
| jobs: | |
| build-validation: | |
| name: Build Test | |
| uses: ./.github/workflows/build-test.yaml | |
| build: | |
| if: ${{ github.repository_owner == 'rancher' }} | |
| name: Build and Upload | |
| uses: ./.github/workflows/build-and-upload.yaml | |
| needs: | |
| - build-validation | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| with: | |
| CI_BRANCH: ${{github.ref_name}} |