bullion 0.10.0 → 0.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74fbfc1ee8b98c2ff1c707302c8e62c9b2f8d106308b8b3b02d6a1ffe622cb77
4
- data.tar.gz: adbd79fc4e82a9630dee2dd71c1e33c7e0a8f02732c986af07b1ba3d1733fd5c
3
+ metadata.gz: bad95f78797ed3e0f6c4cd9dd1861c868f26a09726d95472ad2c8617ad587baf
4
+ data.tar.gz: af63bf9331d4953bd95768b92446b5fd2aeecd73ef779fe7f58e420171275e2a
5
5
  SHA512:
6
- metadata.gz: f1cfc723554109cdb6e837e2dabd66eed6dd52d3cd7ca649923f88940c31e83e957e749ec1449c6eef4ffbcc89aafbbf822a3725b55688a3dc5d4290bd63552b
7
- data.tar.gz: ccbe2a235fa91b4568b6977f55b22122de5f0fc1e0c2620c4ef9e16dfc4ce618ccff0322ea1e5c9dc3711f2dc10b22a9dc0bcd5c45d406adb08640229ec78048
6
+ metadata.gz: 76d58792e34491d2d62da8f7aaf8cb196185963c3bfad703eb58890439d22b10586555ea70aa9846e9fff58142561be852fa713ad77fc7fed22070db4d4ac973
7
+ data.tar.gz: 732aae73c0e5aaf7f6181694218fa257f5f965a35bc4c8d44aedb336b97029064e8985c0d1983b1617d5ff80891af5252c35bd8a16d9e52ba7a52e466750fbb5
@@ -31,3 +31,26 @@ jobs:
31
31
 
32
32
  - uses: rubygems/release-gem@v1
33
33
  if: ${{ steps.release.outputs.release_created }}
34
+
35
+ - name: Login to Docker Hub
36
+ uses: docker/login-action@v3
37
+ if: ${{ steps.release.outputs.release_created }}
38
+ with:
39
+ username: ${{ vars.DOCKERHUB_USERNAME }}
40
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
41
+
42
+ - name: Set up QEMU
43
+ uses: docker/setup-qemu-action@v3
44
+ if: ${{ steps.release.outputs.release_created }}
45
+
46
+ - name: Set up Docker Buildx
47
+ uses: docker/setup-buildx-action@v3
48
+ if: ${{ steps.release.outputs.release_created }}
49
+
50
+ - name: Build and push
51
+ uses: docker/build-push-action@v6
52
+ if: ${{ steps.release.outputs.release_created }}
53
+ with:
54
+ platforms: linux/amd64,linux/arm64
55
+ push: true
56
+ tags: jgnagy/bullion:latest,jgnagy/bullion:${{ steps.release.outputs.version }},jgnagy/bullion:${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.10.0"
2
+ ".": "0.10.1"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.1](https://github.com/jgnagy/bullion/compare/bullion/v0.10.0...bullion/v0.10.1) (2025-07-06)
4
+
5
+
6
+ ### Features
7
+
8
+ * enable automatic Docker image builds ([6854692](https://github.com/jgnagy/bullion/commit/685469269d1f7e5b11c3c87bcd814225d5a26d1e))
9
+
3
10
  ## [0.10.0](https://github.com/jgnagy/bullion/compare/bullion/v0.9.0...bullion/v0.10.0) (2025-07-05)
4
11
 
5
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bullion (0.10.0)
4
+ bullion (0.10.1)
5
5
  benchmark (~> 0.4)
6
6
  dry-configurable (~> 1.1)
7
7
  httparty (~> 0.21)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bullion
4
- VERSION = "0.10.0"
4
+ VERSION = "0.10.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy