diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbfe0c44..eadaaf10 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: github.rest.git.createRef({ owner: context.repo.owner, repo: context.repo.repo, - ref: "refs/tags/${{ module }}/v${{ steps.query-release-info.outputs.version }}", + ref: "refs/tags/"+module+"/v${{ steps.query-release-info.outputs.version }}", sha: context.sha }) } diff --git a/option.go b/option.go index 2a3720f6..f21996f6 100644 --- a/option.go +++ b/option.go @@ -56,6 +56,7 @@ type ( options Config ) +// ContinueOnError allows watcher continues watching configuration even Config.Load fails to load the loader. func ContinueOnError() LoadOption { return func(options *loadOptions) { options.continueOnError = true