consume official latency predictor v0.8 release (#1729) #433
Workflow file for this run
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: CI - Dev - Docker Container Image | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release-*' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: write | |
| security-events: write | |
| jobs: | |
| set-params: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| epp_name: ${{ steps.version.outputs.epp_name }} | |
| sidecar_name: ${{ steps.version.outputs.sidecar_name }} | |
| tag: ${{ steps.tag.outputs.tag }} | |
| steps: | |
| - name: Set image names | |
| id: version | |
| run: | | |
| repo="${GITHUB_REPOSITORY##*/}" | |
| echo "epp_name=${repo}-endpoint-picker-dev" >> "$GITHUB_OUTPUT" | |
| echo "sidecar_name=${repo}-disagg-sidecar-dev" >> "$GITHUB_OUTPUT" | |
| - name: Set branch name as tag | |
| id: tag | |
| run: | | |
| echo "tag=${GITHUB_REF_NAME}" >> "$GITHUB_OUTPUT" | |
| build-and-push: | |
| needs: set-params | |
| uses: ./.github/workflows/ci-build-images.yaml | |
| with: | |
| epp-image-name: ${{ needs.set-params.outputs.epp_name }} | |
| sidecar-image-name: ${{ needs.set-params.outputs.sidecar_name }} | |
| tag: ${{ needs.set-params.outputs.tag }} | |
| prerelease: true | |
| chart-suffix: "-dev" | |