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.
version- Specified version of the release. Optional. Default value islatest.prerelease- Allow pre-release. Default value isfalse.token- GITHUB_TOKEN. Optional.prover- Installs Move prover tools (z3, cvc5, dotnet, boogie). Default value isfalse.
Download the latest version of aptos
- name: get aptos
uses: pontem-network/get-aptos@mainDownload 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.9Allow 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"