mirror of
https://github.com/planetmint/planetmint.git
synced 2025-06-16 19:26:36 +00:00
[ci] Add Docker All-In-One build (#352)
* [ci] Add Docker All-In-One build * added changelog and version bump Signed-off-by: Julian Strobl <jmastr@mailbox.org> Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> Co-authored-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
8942ebe4af
commit
26e0a21e39
11
.github/workflows/CI.yml
vendored
11
.github/workflows/CI.yml
vendored
@ -171,3 +171,14 @@ jobs:
|
|||||||
labels: ${{ steps.semver.outputs.labels }}
|
labels: ${{ steps.semver.outputs.labels }}
|
||||||
env:
|
env:
|
||||||
CRYPTOGRAPHY_DONT_BUILD_RUST: 1
|
CRYPTOGRAPHY_DONT_BUILD_RUST: 1
|
||||||
|
- name: Build and push AIO
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: Dockerfile-all-in-one
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
tags: ${{ steps.semver.outputs.tags }}-aio
|
||||||
|
labels: ${{ steps.semver.outputs.labels }}-aio
|
||||||
|
env:
|
||||||
|
CRYPTOGRAPHY_DONT_BUILD_RUST: 1
|
||||||
|
@ -25,6 +25,9 @@ For reference, the possible headings are:
|
|||||||
* **Known Issues**
|
* **Known Issues**
|
||||||
* **Notes**
|
* **Notes**
|
||||||
|
|
||||||
|
## [2.3.2] - 2023-10-03
|
||||||
|
* **Fixed** websocket service issue with block/asset object access of different object/tx versions
|
||||||
|
* **Added** CI pipeline to build and package the all-in-one docker images
|
||||||
|
|
||||||
## [2.3.1] - 2023-02-03
|
## [2.3.1] - 2023-02-03
|
||||||
* **Fixed** backend.models.assets class content type issue (verification if objects are of type dict)
|
* **Fixed** backend.models.assets class content type issue (verification if objects are of type dict)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
|
||||||
__version__ = "2.3.1"
|
__version__ = "2.3.2"
|
||||||
__short_version__ = "2.3"
|
__short_version__ = "2.3"
|
||||||
|
|
||||||
# Supported Tendermint versions
|
# Supported Tendermint versions
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "planetmint"
|
name = "planetmint"
|
||||||
version = "2.3.1"
|
version = "2.3.2"
|
||||||
description = "Planetmint: The Blockchain Database"
|
description = "Planetmint: The Blockchain Database"
|
||||||
authors = ["Planetmint contributors"]
|
authors = ["Planetmint contributors"]
|
||||||
license = "AGPLv3"
|
license = "AGPLv3"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user