From 1737723fc6cc3580ee0b31a2c521ed8dc4767c31 Mon Sep 17 00:00:00 2001 From: jpbogle Date: Tue, 11 Apr 2023 23:51:15 -0400 Subject: [PATCH] Add missing idl args --- README.md | 2 +- action.yml | 6 ++++++ package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d602c2..d0530da 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Use this github action to automate Solana program deployments straight from Gith You can now consume the action by referencing the v1 branch ```yaml -uses: actions/squads-program-upgrade@v0.2.0 +uses: actions/squads-program-upgrade@v0.2.1 with: network-url: 'https://api.devnet.solana.com' program-multisig: '8QC4Lv3YNAHUmacepqxBKCJY5zx7yrDtQLo9sNFsNnqB' diff --git a/action.yml b/action.yml index 0d49495..e204444 100644 --- a/action.yml +++ b/action.yml @@ -30,6 +30,12 @@ inputs: name: description: 'The name of this upgrade' required: true + idl-buffer: + description: 'The IDL buffer to upgrade for the corresponding program' + required: false + authority-index: + description: 'The index that the authority key is in this multisig (defaults to 1)' + required: false keypair: description: 'The keypair to use for deploys' required: true diff --git a/package.json b/package.json index 20625c1..a3727c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squads-program-upgrade", - "version": "0.2.0", + "version": "0.2.1", "private": true, "description": "squads-program-upgrade solana deploy action", "main": "lib/main.js",