Skip to content

Commit

Permalink
ci: Don't commit unnecessary files during release process
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanty committed Aug 11, 2022
1 parent e70b711 commit e2aea48
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file removed knope-x86_64-unknown-linux-musl-v0.4.1.tgz
Binary file not shown.
Binary file removed knope-x86_64-unknown-linux-musl-v0.4.1.tgz.1
Binary file not shown.
Binary file removed knope-x86_64-unknown-linux-musl-v0.4.1/knope
Binary file not shown.
4 changes: 2 additions & 2 deletions knope.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type = "PrepareRelease"

[[workflows.steps]]
type = "Command"
command = "git add . && git commit -m \"chore: prepare release $version\" && git push"
command = "git add pyproject.toml CHANGELOG.md && git commit -m \"chore: prepare release $version\" && git push"

[workflows.steps.variables]
"$version" = "Version"
Expand All @@ -27,7 +27,7 @@ prerelease_label = "rc"

[[workflows.steps]]
type = "Command"
command = "git add . && git commit -m \"chore: prepare release $version\" && git push"
command = "git add pyproject.toml CHANGELOG.md && git commit -m \"chore: prepare release $version\" && git push"

[workflows.steps.variables]
"$version" = "Version"
Expand Down

0 comments on commit e2aea48

Please sign in to comment.