chore: Improve performance for repeated i18n format calls (#3286) #5624
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 workflow releases the current package to a dedicated private CodeArtifact repository. | |
# One repository may publish more than one package. For more details refer to the release-package Action. | |
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
role-to-assume: | |
type: string | |
description: Use to override the AWS role used during release | |
required: false | |
project-name: | |
type: string | |
description: Use to override the CodeBuild project called | |
required: false | |
push: | |
branches: | |
- main | |
- 'dev-v3-*' | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
release: | |
uses: cloudscape-design/actions/.github/workflows/release.yml@main | |
secrets: inherit | |
with: | |
skip-test: true | |
role-to-assume: ${{ inputs.role-to-assume }} | |
project-name: ${{ inputs.project-name }} |