Skip to content

Commit

Permalink
Sign commits
Browse files Browse the repository at this point in the history
  • Loading branch information
xorima committed Apr 14, 2020
1 parent 175e7ae commit 32ec541
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.0

Sign git commits

## 1.0.0

Full initial release of the application with all functionality working
Expand Down
2 changes: 1 addition & 1 deletion app/modules/git/git.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function New-CommitAndPushIfChanged {
Write-Log -Level INFO -Source 'git' -Message 'Files have changed adding all files'
git add -A
Write-Log -Level INFO -Source 'git' -Message "Committing to current branch $(git branch)"
git commit -m "$CommitMessage"
git commit -m "$CommitMessage" -s
if ($push) {
Write-Log -Level INFO -Source 'git' -Message "Pushing changes to remote"
git push
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/chef-cookbooks-cookbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: github-file-manager
image: xorima/github-file-manager:1.0.0
image: xorima/github-file-manager:1.1.0
env:
- name: GITHUB_TOKEN
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/sous-chefs-cookbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: github-file-manager
image: xorima/github-file-manager:1.0.0
image: xorima/github-file-manager:1.1.0
env:
- name: GITHUB_TOKEN
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/sous-chefs-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: github-file-manager
image: xorima/github-file-manager:1.0.0
image: xorima/github-file-manager:1.1.0
env:
- name: GITHUB_TOKEN
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/sous-chefs-orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: github-file-manager
image: xorima/github-file-manager:1.0.0
image: xorima/github-file-manager:1.1.0
env:
- name: GITHUB_TOKEN
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/sous-chefs-terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: github-file-manager
image: xorima/github-file-manager:1.0.0
image: xorima/github-file-manager:1.1.0
env:
- name: GITHUB_TOKEN
valueFrom:
Expand Down

0 comments on commit 32ec541

Please sign in to comment.