discharger 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54e7191b459cff13f22f5b7e079a599fb3dedbf91aa8f1c939e64363df6e4c55
4
- data.tar.gz: fd53ba816f8684f7a6852c23c35a062d0bd8f8a5c7b9ef36ad56c8cb7b1ba77a
3
+ metadata.gz: f399dc08de3d54286fe7030a7b7a0e15a2055f9aa62d760073f692f96b0e8b46
4
+ data.tar.gz: a1f5ce7018dc556f7b18da3fc837cfde7efb589de3c3527e9ad69ba78a78096d
5
5
  SHA512:
6
- metadata.gz: be138616dc7af6ac3810418dbe0595b68ab5cbf5ff47e1c39c994efc87d555bf724f9ae90ee6fd430dfe30a5ada709d015771b7e939ef4dda24552bb50bc7365
7
- data.tar.gz: ab0f5de7b28d24f73c736cc6f4cf3adcbe5fa932835d53594b71102e859b20f0fa2e07f7b56b3b5571c3ded87f52812356509966d86371c2bd0eb70bfdb9767e
6
+ metadata.gz: b04988a2af1edd4f28ffc2490839df815a4e551456f0d9c4e5a9e23f2ccb774e6e0b6ef313890c85e8fdf5f8bb273934fbaab30cf2088f6b933f272de65abcfb
7
+ data.tar.gz: 4be4ec992ed4e59d4335c8ad2110d603379ec729c402af8c85db2d7e606f19966a2c3d03aae82d45f7c072a060d76669f18649680270e6e42e83c5f86a289c04
@@ -147,7 +147,7 @@ module Discharger
147
147
  ["git push origin #{production_branch}:#{production_branch} v#{current_version}:v#{current_version}"],
148
148
  ["git push origin v#{current_version}"]
149
149
  ) do
150
- tasker["#{name}:slack"].invoke("Released #{app_name} #{current_version} to production.", release_message_channel, ":chipmunk:")
150
+ tasker["#{name}:slack"].invoke("Released #{app_name} #{current_version} (#{commit_identifier.call}) to production.", release_message_channel, ":chipmunk:")
151
151
  if last_message_ts.present?
152
152
  text = File.read(Rails.root.join(changelog_file))
153
153
  tasker["#{name}:slack"].reenable
@@ -206,11 +206,12 @@ module Discharger
206
206
  syscall(
207
207
  ["git fetch origin #{working_branch}"],
208
208
  ["git checkout #{working_branch}"],
209
+ ["git reset --hard origin/#{working_branch}"],
209
210
  ["git branch -D #{staging_branch} 2>/dev/null || true"],
210
211
  ["git checkout -b #{staging_branch}"],
211
212
  ["git push origin #{staging_branch} --force"]
212
213
  ) do
213
- tasker["#{name}:slack"].invoke("Building #{app_name} #{commit_identifier.call} on #{staging_branch}.", release_message_channel)
214
+ tasker["#{name}:slack"].invoke("Building #{app_name} #{current_version} (#{commit_identifier.call}) on #{staging_branch}.", release_message_channel)
214
215
  syscall ["git checkout #{working_branch}"]
215
216
  end
216
217
  end
@@ -1,3 +1,3 @@
1
1
  module Discharger
2
- VERSION = "0.2.7"
2
+ VERSION = "0.2.8"
3
3
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discharger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay
8
8
  - Savannah Moore
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2025-02-05 00:00:00.000000000 Z
11
+ date: 2025-02-27 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: open3
@@ -103,7 +102,6 @@ metadata:
103
102
  homepage_uri: https://github.com/SOFware/discharger
104
103
  source_code_uri: https://github.com/SOFware/discharger.git
105
104
  changelog_uri: https://github.com/SOFware/discharger/blob/main/CHANGELOG.md
106
- post_install_message:
107
105
  rdoc_options: []
108
106
  require_paths:
109
107
  - lib
@@ -118,8 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
116
  - !ruby/object:Gem::Version
119
117
  version: '0'
120
118
  requirements: []
121
- rubygems_version: 3.4.22
122
- signing_key:
119
+ rubygems_version: 3.6.3
123
120
  specification_version: 4
124
121
  summary: Tasks for discharging an application for deployment.
125
122
  test_files: []