chore: post 0.1.3-rc.5 fixes (#2672)

Co-authored-by: gusto <bacvinka@gmail.com>
This commit is contained in:
Antonio 2026-05-04 15:43:12 +02:00 committed by GitHub
parent 47cbe3b02b
commit 4e1ec57324
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@ Most of the template content is the same or very similar to what is in `release.
- [ ] Address checklist of the generated GitHub release in [https://github.com/logos-blockchain/logos-blockchain/releases](https://github.com/logos-blockchain/logos-blockchain/releases)
- [ ] Publish release
- [ ] Post the link to the published release to this issue for easier review
- [ ] Post the link to the Docker image building workflow as appearing in [node-docker-build-workflow][the Actions section]
- [ ] Post the link to the Docker image building workflow as appearing in [the Actions section][node-docker-build-workflow]
## Devnet deployment

View File

@ -55,7 +55,7 @@ Most of the template content is the same or very similar to what is in `release-
- [ ] Address checklist of the generated GitHub release in [https://github.com/logos-blockchain/logos-blockchain/releases](https://github.com/logos-blockchain/logos-blockchain/releases)
- [ ] Publish release
- [ ] Post the link to the published release to this issue for easier review
- [ ] Post the link to the Docker image building workflow as appearing in [node-docker-build-workflow][the Actions section]
- [ ] Post the link to the Docker image building workflow as appearing in [the Actions section][node-docker-build-workflow]
## Testnet deployment

View File

@ -3,12 +3,12 @@ name: Publish Logos Blockchain Node Docker Image
on:
release:
types: [published, created]
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/logos-blockchain-node
VERSION_TAG: 0.1.3-rc.5
VERSION_TAG: ${{ github.ref_name }}
LATEST_TAG: ${{ contains(github.ref_name, '-rc.') && 'latest-rc' || 'latest' }}
jobs:
push_to_registries:
@ -59,7 +59,7 @@ jobs:
LB_NODE_VERSION=${{ env.VERSION_TAG }}
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION_TAG }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest-rc
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }}
labels: ${{ steps.meta.outputs.labels }}
- name: Generate artifact attestation

View File

@ -11,4 +11,4 @@ export CFG_FILE_PATH="/node-data/${LB_HOST_IDX}/config.yaml" \
LOG_DIR="/node-data/${LB_HOST_IDX}/" \
STATE_PATH="/node-data/${LB_HOST_IDX}/state"
exec /usr/bin/logos-blockchain-node --deployment $CFG_DEPLOYMENT_PATH $CFG_FILE_PATH
exec /usr/local/bin/logos-blockchain-node --deployment $CFG_DEPLOYMENT_PATH $CFG_FILE_PATH