mirror of
https://github.com/logos-blockchain/logos-blockchain.git
synced 2026-05-18 15:29:30 +00:00
chore: post 0.1.3-rc.5 fixes (#2672)
Co-authored-by: gusto <bacvinka@gmail.com>
This commit is contained in:
parent
47cbe3b02b
commit
4e1ec57324
2
.github/ISSUE_TEMPLATE/release-candidate.md
vendored
2
.github/ISSUE_TEMPLATE/release-candidate.md
vendored
@ -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
|
||||
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/release.md
vendored
2
.github/ISSUE_TEMPLATE/release.md
vendored
@ -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
|
||||
|
||||
|
||||
6
.github/workflows/publish-node-image.yml
vendored
6
.github/workflows/publish-node-image.yml
vendored
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user