Skip to content

Commit

Permalink
remove colors set
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 11, 2024
1 parent a889751 commit 7a1d922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-go-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
id: check_breaking_changes
run: |

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2086:info:2:36: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2086:info:2:36: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2086:info:2:63: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2086:info:2:63: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2129:style:5:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2129:style:5:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2086:info:5:33: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2086:info:5:33: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2086:info:6:29: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2086:info:6:29: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 81 in .github/workflows/release-go-module.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-go-module.yml#L81

shellcheck reported issue in this script: SC2086:info:7:15: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/release-go-module.yml:81:9: shellcheck reported issue in this script: SC2086:info:7:15: Double quote to prevent globbing and word splitting [shellcheck]
set +e # Disable exit on error to capture output even if the command fails
BREAKING_CHANGES=$(gorelease -base $LAST_TAG_VERSION -version $VERSION 2>&1 | sed -r "s/\x1B\[[0-9;]*[mK]//g")
BREAKING_CHANGES=$(gorelease -base $LAST_TAG_VERSION -version $VERSION 2>&1)
echo "Breaking changes: ${BREAKING_CHANGES}"
set -e # Re-enable exit on error for the subsequent steps
echo "BREAKING_CHANGES<<EOF" >> $GITHUB_ENV
Expand Down

0 comments on commit 7a1d922

Please sign in to comment.