Rebuild Namada images (triggerable) #20
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: Rebuild Namada images (triggerable) | |
on: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: "The namada SHA commit to build" | |
required: true | |
type: string | |
genesis_template_version: | |
description: "The genesis template version" | |
required: true | |
type: string | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
env: | |
antithesis_registry_url: us-central1-docker.pkg.dev/molten-verve-216720/heliax-repository | |
strategy: | |
fail-fast: true | |
matrix: | |
images: | |
- make: "build-config" | |
image: "namada-config" | |
tag: "" | |
- make: "build-genesis" | |
image: "namada-genesis" | |
tag: "" | |
- make: "build-namada" | |
image: "namada" | |
tag: "" | |
- make: "build-namada-inst" | |
image: "namada" | |
tag: -inst | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to private registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.antithesis_registry_url }} | |
username: _json_key | |
password: ${{ secrets.ANTITHESIS_GAR_JSON_KEY }} | |
- name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build & Push Image ${{ matrix.images.image }} with sha commit ${{ github.event.inputs.commit }}/${{ github.event.inputs.genesis_template_version }} | |
run: | | |
registry_url="${{ env.antithesis_registry_url }}" sha=${{ github.event.inputs.commit }} genesis_template_version=${{ github.event.inputs.genesis_template_version }} make ${{ matrix.images.make }} | |
docker push ${{ env.antithesis_registry_url }}/${{ matrix.images.image }}:${{ github.event.inputs.commit }}${{ matrix.images.tag }} | |
docker tag ${{ env.antithesis_registry_url }}/${{ matrix.images.image }}:${{ github.event.inputs.commit }}${{ matrix.images.tag }} ghcr.io/heliaxdev/ant-${{ matrix.images.image }}:${{ github.event.inputs.commit }}${{ matrix.images.tag }} | |
docker push ghcr.io/heliaxdev/ant-${{ matrix.images.image }}:${{ github.event.inputs.commit }}${{ matrix.images.tag }} | |
check-container: | |
runs-on: ubuntu-latest | |
env: | |
antithesis_registry_url: us-central1-docker.pkg.dev/molten-verve-216720/heliax-repository | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.antithesis_registry_url }} | |
username: _json_key | |
password: ${{ secrets.ANTITHESIS_GAR_JSON_KEY }} | |
- name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build & Push Image Check Container | |
run: | | |
registry_url="${{ env.antithesis_registry_url }}" make build-check | |
docker push ${{ env.antithesis_registry_url }}/check:latest | |
docker tag ${{ env.antithesis_registry_url }}/check:latest ghcr.io/heliaxdev/ant-check:latest | |
docker push ghcr.io/heliaxdev/ant-check:latest |