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 +4 -4
- data/.github/workflows/release.yml +23 -0
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/bullion/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bad95f78797ed3e0f6c4cd9dd1861c868f26a09726d95472ad2c8617ad587baf
|
4
|
+
data.tar.gz: af63bf9331d4953bd95768b92446b5fd2aeecd73ef779fe7f58e420171275e2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 }}
|
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
data/lib/bullion/version.rb
CHANGED