Manual sol artifacts #4
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: Manual sol artifacts | |
| # The on-chain deploy, human-dispatched, run BEFORE tagging a release. Two | |
| # suites, matching `script/Deploy.sol`'s DEPLOYMENT_SUITE switch: deploy the | |
| # log-tables data contract once per chain, then the DecimalFloat concrete (its | |
| # constructor reads the log tables at the Zoltu address). Never broadcasts on | |
| # merge. | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| suite: | |
| description: "The suite to deploy" | |
| required: true | |
| type: choice | |
| options: | |
| - log-tables | |
| - decimal-float | |
| jobs: | |
| deploy: | |
| uses: rainlanguage/rainix/.github/workflows/rainix-manual-sol-artifacts.yaml@main | |
| with: | |
| suite: ${{ inputs.suite }} | |
| secrets: inherit |