Merge pull request #1207 from dwertent/fix-workflow

fix(workflow): Fix workflow
This commit is contained in:
David Wertenteil
2023-04-23 13:26:48 +03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ runs:
if [[ -z "${{ inputs.ORIGINAL_TAG }}" ]]; then
echo "The value of ORIGINAL_TAG is ${{ inputs.ORIGINAL_TAG }}"
echo "Setting the value of ORIGINAL_TAG to ${{ github.ref_name }}"
echo ORIGINAL_TAG=${{ github.ref_name }}" >> $GITHUB_ENV
echo ORIGINAL_TAG="${{ github.ref_name }}" >> $GITHUB_ENV
fi
shell: bash
+1 -1
View File
@@ -17,7 +17,7 @@ var fixCmdExamples = fmt.Sprintf(`
Use with caution, this command will change your files in-place.
# Fix kubernetes YAML manifest files based on a scan command output (output.json)
1) %[1]s scan --format json --format-version v2 --output output.json
1) %[1]s scan . --format json --output output.json
2) %[1]s fix output.json
`, cautils.ExecName())