refactor update router dest config to use multiple dest chain selecto… #122
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: Changesets | |
on: | |
push: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
changesets: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
outputs: | |
changesets_published: ${{ steps.changesets.outputs.published }} | |
changesets_publishedPackages: ${{ steps.changesets.outputs.publishedPackages }} | |
steps: | |
- name: changesets | |
id: changesets | |
uses: smartcontractkit/.github/actions/cicd-changesets@cicd-changesets/1.1.2 | |
with: | |
git-user: app-token-issuer-integrations[bot] | |
git-email: app-token-issuer-integrations[bot]@users.noreply.github.com | |
# Tags created like: <pkg>/v<version> | |
changesets-tag-separator: "/v" | |
# Except the root package, which is tagged like: v<version> (Go module convention) | |
changesets-root-version-package-path: ./pkg/package.json | |
pnpm-use-cache: false | |
aws-region: ${{ vars.AWS_REGION }} | |
aws-role-arn: ${{ secrets.AWS_ROLE_ARN_GATI_READONLY_CHANGESETS }} | |
aws-lambda-url: ${{ secrets.AWS_LAMBDA_URL_GATI_CHANGESETS }} |