diff options
author | Mohammed Al Sahaf <[email protected]> | 2020-04-03 01:44:44 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-02 16:44:44 -0600 |
commit | fdfe2ae53b1adde4704a87e894c7d406bc8c345b (patch) | |
tree | 9af3d0baa50ba7c2e2037017b4065610b2440827 | |
parent | 1c190b001b95e57d21dc63c01ae3c6de2a3fec57 (diff) | |
download | caddy-fdfe2ae53b1adde4704a87e894c7d406bc8c345b.tar.gz caddy-fdfe2ae53b1adde4704a87e894c7d406bc8c345b.zip |
chore: ci: fix release action script (#3216)
* chore: ci: fixing the step name that captures the pushed tag
* chrore: ci: exclude commits prefixed with `ci:` from changelog
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .goreleaser.yml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 250792c18..e67ae6e69 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,4 +50,4 @@ jobs: args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TAG: ${{ steps.vars.outputs.version_tag }} + TAG: ${{ steps.get_version.outputs.version_tag }} diff --git a/.goreleaser.yml b/.goreleaser.yml index c87ba6b9f..06296546c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -60,6 +60,7 @@ changelog: sort: asc filters: exclude: + - '^ci:' - '^docs:' - '^test:' - '^chore:' |