Namada 0.30.3 #1
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: Build docker images | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'The docker image tag' | |
required: true | |
push: | |
branches: | |
- main | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
env: | |
GIT_LFS_SKIP_SMUDGE: 1 | |
permissions: | |
id-token: write | |
contents: write | |
packages: write | |
jobs: | |
docker: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
make: | |
- name: Build & Push WASM docker image | |
image: wasm | |
path: ./docker/namada-wasm | |
- name: Build and Push Namada docker image | |
image: namada | |
path: ./docker/namada | |
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@v2 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/${{ github.repository_owner }}/namada | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: ${{ matrix.make.name }} | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ${{ matrix.make.path }}/Dockerfile | |
push: true | |
tags: ghcr.io/${{ github.repository_owner }}/namada:${{ matrix.make.image }}-${{ github.event.inputs.tag || steps.meta.outputs.version }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |