dockerapi 0.20.0.pre.rc3 → 0.20.0.pre.rc6
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/cd.yml +22 -10
- data/.github/workflows/ci.yml +1 -1
- data/Gemfile.lock +2 -2
- data/lib/docker/api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc2b5f6a477266a4b38267b70ba5a54981aa3dbc22c3fc81f864afbe9ae5d3b5
|
|
4
|
+
data.tar.gz: e732c98e8001c6aaea4208e245c868cd2a3f88fba75e71b2a27f92287717a15c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fed5b955b62ad7370ab59e0b817fd1735b02eeba5ec52b4caedb507e290e73eeb1ad3ac38021b2c3c3ea3dc513dad44e8c6b66ca97ee6adafb2411d4b0f8c1a7
|
|
7
|
+
data.tar.gz: 07e73166ce6f50fdc138ab5d72b14c45fc37a86dea120ea02f124d9aba6c87b288526438f1b2ee504b73ba6b768c462db34765498ca331cdf1bb103e02a14a9d
|
data/.github/workflows/cd.yml
CHANGED
|
@@ -9,25 +9,37 @@ name: CD
|
|
|
9
9
|
|
|
10
10
|
on:
|
|
11
11
|
push:
|
|
12
|
-
branches: [
|
|
12
|
+
branches: [ main ]
|
|
13
13
|
|
|
14
14
|
jobs:
|
|
15
15
|
release:
|
|
16
16
|
runs-on: ubuntu-latest
|
|
17
|
-
|
|
17
|
+
env:
|
|
18
|
+
GH_TOKEN: ${{ github.token }}
|
|
18
19
|
steps:
|
|
19
20
|
- uses: actions/checkout@v3
|
|
20
21
|
- name: Set up Ruby
|
|
21
|
-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
22
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
23
|
-
# uses: ruby/setup-ruby@v1
|
|
24
22
|
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
|
|
25
23
|
with:
|
|
26
24
|
ruby-version: 2.6
|
|
27
|
-
- name: Setup
|
|
28
|
-
run
|
|
25
|
+
- name: Setup to RubyGems
|
|
26
|
+
run: |
|
|
27
|
+
mkdir -p $HOME/.gem
|
|
28
|
+
touch $HOME/.gem/credentials
|
|
29
|
+
chmod 0600 $HOME/.gem/credentials
|
|
30
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
31
|
+
env:
|
|
32
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEM_API}}"
|
|
33
|
+
- name: Install dependencies
|
|
34
|
+
run: |
|
|
35
|
+
gem update --system 3.2.3
|
|
36
|
+
bundle install
|
|
29
37
|
- name: Release
|
|
30
38
|
run: |
|
|
31
|
-
TAG=$(rake version | tr -d '"')
|
|
32
|
-
|
|
33
|
-
|
|
39
|
+
TAG=$(bundle exec rake version | tr -d '"')
|
|
40
|
+
git tag $TAG
|
|
41
|
+
git push --tags
|
|
42
|
+
gh release create $TAG --generate-notes
|
|
43
|
+
bundle exec rake build
|
|
44
|
+
gem push pkg/*
|
|
45
|
+
|
data/.github/workflows/ci.yml
CHANGED
data/Gemfile.lock
CHANGED
data/lib/docker/api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dockerapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.20.0.pre.
|
|
4
|
+
version: 0.20.0.pre.rc6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alysson A. Costa
|
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: 1.3.1
|
|
90
90
|
requirements: []
|
|
91
|
-
rubygems_version: 3.3
|
|
91
|
+
rubygems_version: 3.2.3
|
|
92
92
|
signing_key:
|
|
93
93
|
specification_version: 4
|
|
94
94
|
summary: Interact with Docker API from Ruby code.
|