fix(share/shwap/getters): set span err only if all getters truly failed, otherwise just record err in span for single getter failure #9284
Workflow file for this run
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: Docker Build & Publish | |
# Trigger on all push events, new semantic version tags, and all PRs | |
on: | |
merge_group: | |
push: | |
branches: | |
- "main" | |
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] # yamllint disable-line rule:line-length | |
with: | |
dockerfile: Dockerfile | |
checkout_ref: ${{ github.event.inputs.ref }} | |
secrets: inherit |