Devnet Build and Deploy with IDL #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: Devnet Build and Deploy with IDL | |
| env: | |
| SOLANA_VERIFY_VERSION: "0.4.1" # Version of solana-verify to use | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| priority_fee: | |
| description: "Priority fee for transactions" | |
| required: true | |
| default: "300000" | |
| type: string | |
| jobs: | |
| build: | |
| uses: solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.6 | |
| with: | |
| program: "let_me_buy" | |
| network: "devnet" | |
| deploy: true | |
| upload_idl: true | |
| verify: false | |
| use-squads: false | |
| priority-fee: ${{ github.event.inputs.priority_fee }} | |
| secrets: | |
| DEVNET_SOLANA_DEPLOY_URL: ${{ secrets.DEVNET_SOLANA_DEPLOY_URL }} | |
| DEVNET_DEPLOYER_KEYPAIR: ${{ secrets.DEVNET_DEPLOYER_KEYPAIR }} | |
| PROGRAM_ADDRESS_KEYPAIR: ${{ secrets.PROGRAM_ADDRESS_KEYPAIR }} |