Skip to content

Commit

Permalink
Merge pull request #37 from hyphacoop/fastfadingviolets/v19-fix
Browse files Browse the repository at this point in the history
retag official v19 images + jq
  • Loading branch information
fastfadingviolets authored Jul 30, 2024
2 parents 55a4a78 + c01bd1b commit 03e922d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/gaiad-linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ jobs:
release: ${{fromJson(needs.collect_remote_release.outputs.releases)}}
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Log in to the Container registry
Expand All @@ -64,13 +66,12 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: strangelove-ventures/heighliner-build-action@v1.0.2
- name: Build and push docker image
uses: docker/build-push-action@v6.5.0
with:
chain: gaia
tag: ${{ matrix.release }}
git-ref: ${{ matrix.release }}
github-organization: cosmos
github-repo: gaia
additional-args: "--go-version=${{ inputs.go_version }}"
heighliner-tag: v1.6.3
context: ./docker
file: ./docker/Dockerfile
push: true
tags: "ghcr.io/hyphacoop/gaia:${{ matrix.release }}"
build-args: |
GAIA_VERSION=${{ matrix.release }}
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ARG GAIA_VERSION
FROM ghcr.io/cosmos/gaia:${GAIA_VERSION} as base

USER root
RUN apk add --no-cache jq
USER nonroot

0 comments on commit 03e922d

Please sign in to comment.