Skip to content

Devnet Build and Deploy with IDL #4

Devnet Build and Deploy with IDL

Devnet Build and Deploy with IDL #4

Workflow file for this run

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 }}