Skip to content

Commit

Permalink
add heighliner CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
okdas committed May 6, 2024
1 parent d6fe763 commit 8adc631
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/container-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Create and Push Container Image (heighliner)

on:
push:
tags:
- '**'
branches:
- '**'

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: strangelove-ventures/[email protected]
with:
chain: pocket-network
dockerfile: cosmos
pre-build: |
make ignite_install
make proto_regen
build-target: |
make install
binaries: |
- /go/bin/poktrolld
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
images: |
ghcr.io/pokt-network/poktrolld
tags: |
type=ref,event=branch
type=ref,event=branch,suffix=-dev
type=ref,event=pr
type=sha
type=sha,format=long
Expand Down

0 comments on commit 8adc631

Please sign in to comment.