stack-service-base 0.0.32 → 0.0.33
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23b308934479603c1049b9058944f333b3fe0f5bd24609ce25367cae3cc7f2e1
|
4
|
+
data.tar.gz: f066c31143ac53593b7d9efd3f0c1279cf9b4fc8126b4f1fe6be7bcddee11a0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80efea075e3929dc269062a62020b80aaf793fb944b95a517ce26838411098d4b3d5b00f1d982d7854931466f6acf552cb1a4fca2247ed66fd1f7ecc74bb76a4
|
7
|
+
data.tar.gz: 3b2efdf7ff797857f61e22caa6c074ea4aa4a6021bad35a537571a910cf6e62739301890a487bf99628bec2c6fe64db94f2fb535c67e0d5bacfb5eecbe29413b
|
@@ -0,0 +1,19 @@
|
|
1
|
+
on: { push: { branches: [main,release] } }
|
2
|
+
|
3
|
+
jobs:
|
4
|
+
build_service_images:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
steps:
|
7
|
+
- uses: actions/checkout@v3
|
8
|
+
- uses: docker/login-action@v2
|
9
|
+
with: { username: '${{ secrets.DOCKER_HUB_LOGIN }}', password: '${{ secrets.DOCKER_HUB_PASSWORD }}' }
|
10
|
+
- uses: docker/setup-buildx-action@v3
|
11
|
+
- uses: ruby/setup-ruby@v1
|
12
|
+
with: { ruby-version: 3.4.4 }
|
13
|
+
- run: gem install build-labels
|
14
|
+
- run: env && cd docker && build-labels -n -c docker-compose.yml $(if [ "${GITHUB_REF##*/}" = "release" ]; then echo "--full-version"; fi) github set_version to_dockerfiles to_compose | tee bake.yml
|
15
|
+
env:
|
16
|
+
GITHUB_RUN_NUMBER: ${{ github.run_number }}
|
17
|
+
- uses: docker/bake-action@v5
|
18
|
+
env: { REGISTRY_HOST: '${{ secrets.DOCKER_HUB_LOGIN }}' }
|
19
|
+
with: { workdir: ./docker, files: bake.yml, push: true }
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stack-service-base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artyom B
|
@@ -213,10 +213,7 @@ executables:
|
|
213
213
|
extensions: []
|
214
214
|
extra_rdoc_files: []
|
215
215
|
files:
|
216
|
-
- bin/./ssbase
|
217
216
|
- bin/ssbase
|
218
|
-
- lib/./stack-service-base.rb
|
219
|
-
- lib/./version.rb
|
220
217
|
- lib/stack-service-base.rb
|
221
218
|
- lib/stack-service-base/command_init.rb
|
222
219
|
- lib/stack-service-base/command_line.rb
|
@@ -225,6 +222,7 @@ files:
|
|
225
222
|
- lib/stack-service-base/logging.rb
|
226
223
|
- lib/stack-service-base/nats_service.rb
|
227
224
|
- lib/stack-service-base/open_telemetry.rb
|
225
|
+
- lib/stack-service-base/project_template/github/.github/workflows/main.yml
|
228
226
|
- lib/stack-service-base/project_template/gitlab-c/.gitlab-ci.yml
|
229
227
|
- lib/stack-service-base/project_template/gitlab-c/docker/Dockerfile.build
|
230
228
|
- lib/stack-service-base/project_template/gitlab-c/docker/local_build.sh
|