Skip to content

docker-build-publish #9241

docker-build-publish

docker-build-publish #9241

name: docker-build-publish
# Trigger on all push events, new semantic version tags, and all PRs
on:
push:
branches:
- "main"
- "v*"
tags:
- "v*"
pull_request:
workflow_dispatch:
inputs:
ref:
description: "The checkout reference (ie tag, branch, sha)"
required: true
type: string
jobs:
docker-security-build:
permissions:
contents: write
packages: write
uses: celestiaorg/.github/.github/workflows/[email protected]
with:
dockerfile: docker/Dockerfile
checkout_ref: ${{ github.event.inputs.ref }}
secrets: inherit
docker-txsim-build:
permissions:
contents: write
packages: write
uses: celestiaorg/.github/.github/workflows/[email protected]
with:
dockerfile: docker/Dockerfile_txsim
packageName: txsim
checkout_ref: ${{ github.event.inputs.ref }}
secrets: inherit