Skip to content

Commit

Permalink
no comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Matrix86 committed Oct 1, 2020
1 parent 73efe3c commit 7c51eaa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"template": ".github/changelog_template.md",

"groupings": [
{ "name": "New Features", "patterns": [ "(?i)\\bnew\\b" ] },
{ "name": "Fixes", "patterns": [ "(?i)\\bfix\\b" ] },
{ "name": "New Features", "patterns": [ "(?i)^new\\b" ] },
{ "name": "Fixes", "patterns": [ "(?i)^fix\\b" ] },
{ "name": "Misc", "patterns": [ ".*" ] }
],
"exclude": [
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
FROM: ${{steps.last.outputs.tag}}
TO: ${{steps.current.outputs.tag}}
OUTPUT: .github/CHANGELOG.md

- name: View Changelog
run: cat .github/CHANGELOG.md

Expand All @@ -49,10 +50,10 @@ jobs:
with:
args: check

- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Create release on GitHub
- name: Create release on GitHub
uses: docker://goreleaser/goreleaser:latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: release --rm-dist --release-notes .github/CHANGELOG.md
workdir: ./cmd/driplane
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
vendor/*
.idea/
testing/*
bin/*
bin/*
# to avoid the error 'error=git is currently in a dirty state, please check in your pipeline what can be changing the following files:' on goreleaser
.github/CHANGELOG.md

0 comments on commit 7c51eaa

Please sign in to comment.