fix(fibre): hex-decode promise hash in is-payment-processed query (#7… #17025
This file contains hidden or 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 push events to main/release branches and new semantic version | |
| # tags. PR and merge_group triggers are omitted because the reusable pipeline | |
| # only publishes images on push to main, making PR/MQ runs build-only waste. | |
| # Docker build validation is covered by the E2E image build in test.yml. | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "v*" | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| inputs: | |
| ref: | |
| description: "The checkout reference (ie tag, branch, sha)" | |
| required: true | |
| type: string | |
| jobs: | |
| docker-standalone-build: | |
| permissions: | |
| contents: write | |
| packages: write | |
| uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@9ee03305d3cc6cf520b7895436429aa853b58e70 #v0.6.4 | |
| with: | |
| dockerfile: docker/standalone.Dockerfile | |
| checkout_ref: ${{ github.event.inputs.ref }} | |
| packageName: celestia-app-standalone | |
| secrets: inherit | |
| docker-multiplexer-build: | |
| permissions: | |
| contents: write | |
| packages: write | |
| uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@9ee03305d3cc6cf520b7895436429aa853b58e70 #v0.6.4 | |
| with: | |
| dockerfile: docker/multiplexer.Dockerfile | |
| checkout_ref: ${{ github.event.inputs.ref }} | |
| packageName: celestia-app | |
| secrets: inherit | |
| docker-txsim-build: | |
| permissions: | |
| contents: write | |
| packages: write | |
| uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@9ee03305d3cc6cf520b7895436429aa853b58e70 #v0.6.4 | |
| with: | |
| dockerfile: docker/txsim/Dockerfile | |
| packageName: txsim | |
| checkout_ref: ${{ github.event.inputs.ref }} | |
| secrets: inherit |