-
Notifications
You must be signed in to change notification settings - Fork 1
29 lines (26 loc) · 831 Bytes
/
devnet.yaml
File metadata and controls
29 lines (26 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 }}