Add Token Factory and upgrade IBC to 7.4.0 #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Heighliner Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
heighliner: | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: container-login | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata for docker using shell | |
id: shell_meta | |
run: | | |
SHA=$(git rev-parse --short HEAD) | |
echo "SHA=$SHA" >> $GITHUB_ENV | |
echo "::set-output name=sha::sha-$SHA" | |
- name: Build Heighliner image | |
id: heighliner | |
uses: burnt-labs/[email protected] | |
with: | |
local: true | |
tag: ${{ steps.shell_meta.outputs.sha }} | |
chain: xion | |
github-organization: burnt-labs | |
github-repo: xion | |
dockerfile: cosmos | |
build-target: make install | |
binaries: '["/go/bin/xiond"]' | |
build-env: '["BUILD_TAGS=muslc"]' | |
- name: Push Heighliner image | |
run: | | |
docker tag ${{ steps.heighliner.outputs.tag }} ghcr.io/burnt-labs/xion/${{ steps.heighliner.outputs.tag }} | |
docker push ghcr.io/burnt-labs/xion/${{ steps.heighliner.outputs.tag }} |