Skip to content

Mxpy auto-update command #5

Mxpy auto-update command

Mxpy auto-update command #5

name: Auto-Update mxpy (Ubuntu)
on:
pull_request:
branches: [main, feat/*]
workflow_dispatch:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
wget -O mxpy-up.py https://raw.githubusercontent.com/multiversx/mx-sdk-py-cli/$BRANCH_NAME/mxpy-up.py
python3 mxpy-up.py --exact-version=9.0.0 --not-interactive
- name: Smoke test
run: |
export PATH="~/multiversx-sdk:${PATH}"
mxpy --version
- name: Auto-Update
run: |
export PATH="~/multiversx-sdk:${PATH}"
mxpy-update
mxpy --version