Added 12 token/s: undefined #72
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: Polygon Tokenlist api GCP docker publish image | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to build and push' | |
required: true | |
type: string | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
generate-version: | |
uses: 0xPolygon/pipelines/.github/workflows/generate_version.yaml@main | |
docker-release: | |
needs: | |
- generate-version | |
uses: 0xPolygon/pipelines/.github/workflows/gcp_pipeline_release_image.yaml@main | |
with: | |
image_name: "api-polygon-tokens" | |
image_tag: ${{ inputs.tag || needs.generate-version.outputs.version }} | |
checkout_ref: ${{ github.ref_name }} |