-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ccip-develop' of github.com:smartcontractkit/ccip into …
…CCIP-2455-off-chain-blessing-off-ramp-contract-changes
- Loading branch information
Showing
226 changed files
with
5,948 additions
and
4,922 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,10 @@ on: | |
branches: | ||
- "release/**" | ||
|
||
env: | ||
ECR_HOSTNAME: public.ecr.aws | ||
ECR_IMAGE_NAME: chainlink/chainlink | ||
|
||
jobs: | ||
checks: | ||
name: "Checks" | ||
|
@@ -30,17 +34,23 @@ jobs: | |
permissions: | ||
id-token: write | ||
contents: read | ||
outputs: | ||
docker-image-tag: ${{ steps.build-sign-publish.outputs.docker-image-tag }} | ||
docker-image-digest: ${{ steps.build-sign-publish.outputs.docker-image-digest }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
|
||
- name: Build, sign and publish chainlink image | ||
id: build-sign-publish | ||
uses: ./.github/actions/build-sign-publish-chainlink | ||
with: | ||
publish: true | ||
aws-role-to-assume: ${{ secrets.AWS_OIDC_IAM_ROLE_ARN }} | ||
aws-role-duration-seconds: ${{ secrets.AWS_ROLE_DURATION_SECONDS }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
ecr-hostname: ${{ env.ECR_HOSTNAME }} | ||
ecr-image-name: ${{ env.ECR_IMAGE_NAME }} | ||
sign-images: true | ||
sign-method: "keypair" | ||
cosign-private-key: ${{ secrets.COSIGN_PRIVATE_KEY }} | ||
|
@@ -60,3 +70,44 @@ jobs: | |
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
this-job-name: build-sign-publish-chainlink | ||
continue-on-error: true | ||
|
||
# Notify Slack channel for new git tags. | ||
slack-notify: | ||
if: github.ref_type == 'tag' | ||
needs: [build-sign-publish-chainlink] | ||
runs-on: ubuntu-24.04 | ||
environment: build-publish | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Notify Slack | ||
uses: smartcontractkit/.github/actions/slack-notify-git-ref@31e00facdd8f57a2bc7868b5e4c8591bf2aa3727 # [email protected] | ||
with: | ||
slack-channel-id: ${{ secrets.SLACK_CHANNEL_RELEASE_NOTIFICATIONS }} | ||
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN_RELENG }} # Releng Bot | ||
git-ref: ${{ github.ref_name }} | ||
git-ref-type: ${{ github.ref_type }} | ||
changelog-url: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
format( | ||
'https://github.com/{0}/blob/{1}/CHANGELOG.md', | ||
github.repository, | ||
github.ref_name | ||
) || '' | ||
}} | ||
docker-image-name: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
format( | ||
'{0}/{1}:{2}', | ||
env.ECR_HOSTNAME, | ||
env.ECR_IMAGE_NAME, | ||
needs.build-sign-publish-chainlink.outputs.docker-image-tag | ||
) || '' | ||
}} | ||
docker-image-digest: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
needs.build-sign-publish-chainlink.outputs.docker-image-digest || '' | ||
}} |
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
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
Oops, something went wrong.