kitchen-transport-express 1.4.0 → 1.4.1
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 +4 -4
- data/.github/workflows/gem-push.yml +47 -0
- data/CHANGELOG.md +3 -0
- data/lib/kitchen/transport/express/version.rb +1 -1
- data/lib/kitchen/transport/express_ssh.rb +0 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 747b9b46fe258347afe6a875be3589040dd32a7a0a683f55daf7db89432f56b8
|
|
4
|
+
data.tar.gz: 5718e229fd6b29f60aee5347ac04805e69f105f3b243371710d1533f80fe90e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ca322124891398ced97700e80c53e5ea8c2b62fda982444919b78e4304127fdad4bd9eae74736cd28e6ce9902cd1c7ee09052d33c4487cdb71d6cb912b9868d
|
|
7
|
+
data.tar.gz: 37bdcf4336a387fc525ed2e8bba704e23adfcc5e50e8d017adf090521afd97dcfbb3ad9d32313c5e8b11542c863499f0e395df328c71c51f25dc4e1bb32104b6
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Ruby Gem
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
name: Build + Publish
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
packages: write
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- name: Set up Ruby
|
|
18
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
19
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
20
|
+
uses: ruby/setup-ruby@v1
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: 3.1
|
|
23
|
+
rubygems: 3.2.3
|
|
24
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
25
|
+
|
|
26
|
+
- name: Publish to GPR
|
|
27
|
+
run: |
|
|
28
|
+
mkdir -p $HOME/.gem
|
|
29
|
+
touch $HOME/.gem/credentials
|
|
30
|
+
chmod 0600 $HOME/.gem/credentials
|
|
31
|
+
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
32
|
+
gem build *.gemspec
|
|
33
|
+
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
|
34
|
+
env:
|
|
35
|
+
GEM_HOST_API_KEY: "Bearer ${{secrets.GH_TOKEN}}"
|
|
36
|
+
OWNER: ${{ github.repository_owner }}
|
|
37
|
+
|
|
38
|
+
- name: Publish to RubyGems
|
|
39
|
+
run: |
|
|
40
|
+
mkdir -p $HOME/.gem
|
|
41
|
+
touch $HOME/.gem/credentials
|
|
42
|
+
chmod 0600 $HOME/.gem/credentials
|
|
43
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
44
|
+
gem build *.gemspec
|
|
45
|
+
gem push *.gem
|
|
46
|
+
env:
|
|
47
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/CHANGELOG.md
CHANGED
|
@@ -143,7 +143,6 @@ module Kitchen
|
|
|
143
143
|
# @api private
|
|
144
144
|
def valid_remote_requirements?(remote)
|
|
145
145
|
execute("(which tar && which gzip) > /dev/null")
|
|
146
|
-
execute("mkdir -p #{remote}")
|
|
147
146
|
true
|
|
148
147
|
rescue => e
|
|
149
148
|
Express.log(logger, "Requirements not met on remote host for Express transport.\n#{e}")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-transport-express
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Steele
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -144,6 +144,7 @@ executables: []
|
|
|
144
144
|
extensions: []
|
|
145
145
|
extra_rdoc_files: []
|
|
146
146
|
files:
|
|
147
|
+
- ".github/workflows/gem-push.yml"
|
|
147
148
|
- ".github/workflows/ruby.yml"
|
|
148
149
|
- ".gitignore"
|
|
149
150
|
- ".rubocop.yml"
|
|
@@ -165,7 +166,7 @@ metadata:
|
|
|
165
166
|
documentation_uri: https://github.com/justintsteele/kitchen-transport-express/blob/main/README.md
|
|
166
167
|
homepage_uri: https://github.com/justintsteele/kitchen-transport-express
|
|
167
168
|
source_code_uri: https://github.com/justintsteele/kitchen-transport-express
|
|
168
|
-
post_install_message:
|
|
169
|
+
post_install_message:
|
|
169
170
|
rdoc_options: []
|
|
170
171
|
require_paths:
|
|
171
172
|
- lib
|
|
@@ -181,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
182
|
version: '0'
|
|
182
183
|
requirements: []
|
|
183
184
|
rubygems_version: 3.3.27
|
|
184
|
-
signing_key:
|
|
185
|
+
signing_key:
|
|
185
186
|
specification_version: 4
|
|
186
187
|
summary: Skip the long lines in Kitchen Transport!
|
|
187
188
|
test_files: []
|