Skip to content

chore(deps): bump github.com/cometbft/cometbft from v0.38.14 to v0.38… #47

chore(deps): bump github.com/cometbft/cometbft from v0.38.14 to v0.38…

chore(deps): bump github.com/cometbft/cometbft from v0.38.14 to v0.38… #47

Workflow file for this run

name: Docker Build and Push
# Build & Push builds the simapp docker image on every push to master
# and pushes the image to https://hub.docker.com/u/provenanceio
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
inputs:
release_tag:
description: "The desired tag for the release (e.g. v0.1.0)."
required: true
env:
REGISTRY: ghcr.io
# Set concurrency for this workflow to cancel in-progress jobs if retriggered.
# The github.ref is only available when triggered by a PR so fall back to github.run_id for other cases.
# The github.run_id is unique for each run, giving each such invocation it's own unique concurrency group.
# Basically, if you push to a PR branch, jobs that are still running for that PR will be cancelled.
# But jobs started because of a merge to main or a release tag push are not cancelled.
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
heighliner-docker:
runs-on: ubuntu-latest-x64-xlarge
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.release_tag || github.ref }}
- uses: docker/setup-qemu-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: set lower case owner name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
env:
OWNER: '${{ github.repository_owner }}'
- uses: strangelove-ventures/heighliner-build-action@main
with:
chain: mantrachain
chains-spec-file: chains.yaml
clone-key: ${{ secrets.GIT_CLONE_KEY }}
heighliner-owner: ${{ github.repository_owner }}
heighliner-tag: v1.6.4
github-organization: ${{ github.repository_owner }}
github-repo: ${{ github.event.repository.name }}
git-ref: ${{ github.event.inputs.release_tag || github.ref_name }}
registry: ghcr.io/${{ env.OWNER_LC }}
skip: ${{ github.event_name == 'pull_request' }}