Skip to content

Commit

Permalink
Don't use makefile syntax in shell code
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Oct 11, 2023
1 parent 8ba29aa commit c060f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ghworkflow/workflow_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func releaseWorkflow(cfg *core.GithubWorkflowConfiguration) {
Name: "Generate release info",
Run: makeMultilineYAMLString([]string{
"go install github.com/sapcc/go-bits/tools/release-info@latest",
"release-info CHANGELOG.md $(shell git describe --tags --abbrev=0) > build/release-info",
"release-info CHANGELOG.md $(git describe --tags --abbrev=0) > build/release-info",
}),
})
j.addStep(jobStep{
Expand Down

0 comments on commit c060f4a

Please sign in to comment.