File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 0.1.0 (UNRELEASED)
3+ ## 0.1.1 (2020-12-22)
4+
5+ * Remove yaml line limit
6+
7+ ## 0.1.0 (2020-12-21)
48
59* Initial release
Original file line number Diff line number Diff line change 11# cdkactions
22
33![ Release] ( https://github.com/ArmaanT/cdkactions/workflows/Release/badge.svg )
4-
54[ ![ codecov] ( https://codecov.io/gh/ArmaanT/cdkactions/branch/master/graph/badge.svg )] ( https://codecov.io/gh/ArmaanT/cdkactions )
65[ ![ NPM] ( https://badge.fury.io/js/cdkactions.svg )] ( https://badge.fury.io/js/cdkactions )
76[ ![ PyPI] ( https://badge.fury.io/py/cdkactions.svg )] ( https://badge.fury.io/py/cdkactions )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export class Stack extends Construct {
3535 const workflowOutput = path . join ( session . outdir , child . outputFile ) ;
3636
3737 // Get raw yaml of workflow
38- const rawYaml = yaml . safeDump ( child . toGHAction ( ) ) ;
38+ const rawYaml = yaml . safeDump ( child . toGHAction ( ) , { lineWidth : - 1 } ) ;
3939
4040 // Save the formatted yaml
4141 fs . writeFileSync ( workflowOutput , `# Generated by cdkactions. Do not modify\n# Generated as part of the '${ this . id } ' stack.\n` ) ;
You can’t perform that action at this time.
0 commit comments