add explorer-ui and indexer-module (#6)

This commit is contained in:
erhant
2026-06-23 18:11:00 -03:00
committed by GitHub
parent 9e183d00ed
commit 86d6fa84ea
5 changed files with 78 additions and 0 deletions
@@ -0,0 +1,35 @@
name: Release lez-explorer-ui
# Manually-triggered release for a single submodule. Delegates the
# build / verify / sign / publish pipeline to the local
# _release-module.yml reusable workflow so signing config lives in
# exactly one place.
#
# Source of truth for module name + version is
# submodules/lez-explorer-ui/metadata.json — read by the upstream
# logos-modules-release-action.
#
# This file is generated by scripts/add-module.sh from
# release-module.yml.template. Don't hand-edit the boilerplate; if you
# need to change the pipeline, edit _release-module.yml (shared) or the
# template (affects future modules).
on:
workflow_dispatch:
inputs:
force_build:
description: "Force build — replace the current published release if it has the same version."
type: boolean
default: false
# Forked repos default to a read-only GITHUB_TOKEN.
permissions:
contents: write
jobs:
release:
uses: ./.github/workflows/_release-module.yml
with:
module_path: submodules/lez-explorer-ui
force_build: ${{ inputs.force_build }}
secrets: inherit
@@ -0,0 +1,35 @@
name: Release lez-indexer-module
# Manually-triggered release for a single submodule. Delegates the
# build / verify / sign / publish pipeline to the local
# _release-module.yml reusable workflow so signing config lives in
# exactly one place.
#
# Source of truth for module name + version is
# submodules/lez-indexer-module/metadata.json — read by the upstream
# logos-modules-release-action.
#
# This file is generated by scripts/add-module.sh from
# release-module.yml.template. Don't hand-edit the boilerplate; if you
# need to change the pipeline, edit _release-module.yml (shared) or the
# template (affects future modules).
on:
workflow_dispatch:
inputs:
force_build:
description: "Force build — replace the current published release if it has the same version."
type: boolean
default: false
# Forked repos default to a read-only GITHUB_TOKEN.
permissions:
contents: write
jobs:
release:
uses: ./.github/workflows/_release-module.yml
with:
module_path: submodules/lez-indexer-module
force_build: ${{ inputs.force_build }}
secrets: inherit
+6
View File
@@ -58,3 +58,9 @@
[submodule "submodules/openmetrics-module"]
path = submodules/openmetrics-module
url = https://github.com/logos-co/openmetrics-module
[submodule "submodules/lez-indexer-module"]
path = submodules/lez-indexer-module
url = https://github.com/logos-blockchain/lez-indexer-module
[submodule "submodules/lez-explorer-ui"]
path = submodules/lez-explorer-ui
url = https://github.com/logos-blockchain/lez-explorer-ui