Add ConvertTxFeeCapToCurrency #8
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: "[cLabs] Publish Docker Image For Release" | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [published] # Trigger the workflow only when a release is published | ||
jobs: | ||
get-release-commit: | ||
runs-on: ubuntu-latest | ||
Build-Container-Release: | ||
permissions: | ||
contents: write | ||
actions: read | ||
pull-requests: write | ||
security-events: write | ||
attestations: write | ||
id-token: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
uses: celo-org/reusable-workflows/.github/workflows/[email protected] | ||
with: | ||
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth-release/providers/github-by-repos | ||
service-account: op-geth-release@blockchaintestsglobaltestnet.iam.gserviceaccount.com | ||
artifact-registry: us-west1-docker.pkg.dev/devopsre/celo-blockchain-public/op-geth | ||
tags: ${{ github.event.release.tag_name }} | ||
context: . | ||
debug_enabled: false |