Update Operator UI from v0.8.0-e10948a to v0.8.0-2f868c3 #33342
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: 'Build Chainlink' | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build-chainlink: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Build chainlink image | |
uses: ./.github/actions/build-sign-publish-chainlink | |
with: | |
publish: false | |
sign-images: false | |
- name: Collect Metrics | |
if: always() | |
id: collect-gha-metrics | |
uses: smartcontractkit/push-gha-metrics-action@d1618b772a97fd87e6505de97b872ee0b1f1729a # v2.0.2 | |
with: | |
basic-auth: ${{ secrets.GRAFANA_CLOUD_BASIC_AUTH }} | |
hostname: ${{ secrets.GRAFANA_CLOUD_HOST }} | |
this-job-name: build-chainlink | |
continue-on-error: true |