Skip to content

ovrclk/akash-ghaction-setup

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Setup Akash CLI Action

Sets up the Akash CLI for Github Action use. Installs the latest Akash CLI, Imports Keys, and deployment Certificates.

Inputs

GITHUB_TOKEN

Required The github runner token

AKASH_WALLET_KEY

Required The pem text of the akash wallet key

AKASH_WALLET_KEY_PASSWORD

Required The password encrypting the wallet key pem

AKASH_DEPLOY_CERTIFICATE

Required The deploy certificate pem text

Example usage

- name: Akash on Github Actions Setup
  uses: ovrclk/akash-ghaction-setup
  with:
    GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
    AKASH_WALLET_KEY: ${{secrets.AKASH_WALLET_KEY}}
    AKASH_WALLET_KEY_PASSWORD: ${{secrets.AKASH_WALLET_KEY_PASSWORD}}
    AKASH_DEPLOY_CERTIFICATE: ${{secrets.AKASH_DEPLOY_CERTIFICATE}}