fix: add MAX_NUM_ORDER_AMENDS #11
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: Continuous Delivery | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| release: | ||
| types: [published] | ||
| workflow_dispatch: | ||
| inputs: | ||
| environment: | ||
| description: Environment | ||
| type: environment | ||
| required: true | ||
| jobs: | ||
| cd: | ||
| uses: czetsuyatech/actions/.github/workflows/cd.yml@main | ||
|
Check failure on line 17 in .github/workflows/cd.yml
|
||
| with: | ||
| javaVersion: '17' | ||
| secrets: | ||
| githubAppId: ${{ secrets.CT_RELEASE_APP_ID }} | ||
| githubAppPrivateKey: ${{ secrets.CT_RELEASE_APP_PRIVATE_KEY }} | ||
| githubToken: ${{ secrets.GH_PKG_TOKEN }} | ||