Skip to content

CHORE: fixed PreviewTable caching behavior on landing page + initial … #25

CHORE: fixed PreviewTable caching behavior on landing page + initial …

CHORE: fixed PreviewTable caching behavior on landing page + initial … #25

Workflow file for this run

---
name: Build container image
on:
# By default, build on merge to main.
push:
branches:
- main
# Also support ad-hoc and per-repo calls to trigger builds.
workflow_call:
workflow_dispatch:
repository_dispatch:
jobs:
cuiloa:
runs-on: buildjet-16vcpu-ubuntu-2004
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Docker Hub container registry (for pulls)
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the GitHub container registry (for pushes)
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/penumbra-zone/cuiloa
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
file: Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}