Skip to content

Commit

Permalink
Merge pull request kubescape#1207 from dwertent/fix-workflow
Browse files Browse the repository at this point in the history
fix(workflow): Fix workflow
  • Loading branch information
David Wertenteil authored Apr 23, 2023
2 parents d448de1 + c0530b4 commit 5955247
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/tag-action/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/fix/fix.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 5955247

Please sign in to comment.