See action.yml
steps:
- uses: mergermarket/cdflow2-action@v4This will download cdflow2 and make it available on the path, so you can simply run
cdflow2 after that. It will attempt to install the downloaded cdflow2 into the tool cache.
You can specify a version input to get a specific cdflow2 version.
This also runs cdflow2 release
steps:
- uses: mergermarket/cdflow2-action@v4
with:
command: releaseThe action with synthesise an application version from the repo name, run number and latest revision SHA.
You would typically also specify AWS credentials in the environment here (referencing relevant secrets).
This also runs cdflow2 deploy or cdflow2 destroy
steps:
- uses: mergermarket/cdflow2-action@v4
with:
command: deploy
environment: asliveAs with release, this will synthesise an application version. You can specify a newState input to pass
the --new-state option and/or a planOnly input to pass the --plan-only option.