Skip to content

PRC-4676: Add zero fraction currencies #2141

PRC-4676: Add zero fraction currencies

PRC-4676: Add zero fraction currencies #2141

Workflow file for this run

name: Release
# Entry workflow that coordinates release processes:
# - Publishes official releases when code is pushed to main, adhering to the single workflow, npm trusted publishing/OIDC pattern
# - Publishes preview releases when triggered via PR comment with [preview_deployment]
on:
push:
branches:
- main
issue_comment:
types: [created]
jobs:
publish-release:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/publish-release.yml
permissions:
id-token: write
contents: read
secrets: inherit
publish-preview:
if: github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '[preview_deployment]')
uses: ./.github/workflows/preview-release-on-comment.yml
permissions:
id-token: write
contents: read
pull-requests: write
issues: write
secrets: inherit