Browse Source

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
master
Mohammed Al Sahaf 5 years ago
committed by GitHub
parent
commit
fdfe2ae53b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/release.yml
  2. 1
      .goreleaser.yml

2
.github/workflows/release.yml

@ -50,4 +50,4 @@ jobs:
args: release --rm-dist args: release --rm-dist
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ steps.vars.outputs.version_tag }} TAG: ${{ steps.get_version.outputs.version_tag }}

1
.goreleaser.yml

@ -60,6 +60,7 @@ changelog:
sort: asc sort: asc
filters: filters:
exclude: exclude:
- '^ci:'
- '^docs:' - '^docs:'
- '^test:' - '^test:'
- '^chore:' - '^chore:'

Loading…
Cancel
Save