Skip to content

pontem-network/get-aptos

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

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Get aptos action

This GitHub Action delivers specified aptos release for a Aptos network.

Please note that this is an initial release and will be improved as the Aptos team make decisions on versioning, naming releases etc.

Parameters

  • version - Specified version of the release. Optional. Default value is latest.
  • prerelease - Allow pre-release. Default value is false.
  • token - GITHUB_TOKEN. Optional.
  • prover - Installs Move prover tools (z3, cvc5, dotnet, boogie). Default value is false.

Usage Example

Download the latest version of aptos

- name: get aptos
  uses: pontem-network/get-aptos@main

Download a specific version of aptos

You can see all available versions here

- name: get aptos
  uses: pontem-network/get-aptos@main
  with:
    version: aptos-cli-v0.3.9

Allow downloading pre-releases

- name: get aptos
  uses: pontem-network/get-aptos@main
  with:
    prerelease: "true"

Download a specific version of aptos and token

- name: get aptos
  uses: pontem-network/get-aptos@main
  with:
    version: aptos-cli-v0.3.9
    token: ${{ secrets.GITHUB_TOKEN }}

Install Move prover tools (z3, cvc5, dotnet, boogie)

- name: get aptos
  uses: pontem-network/get-aptos@main
  with:
    prover: "true"