Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOmarA committed Sep 20, 2023
1 parent 557733f commit c4dcb98
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,18 +467,22 @@ jobs:
secret_prefix: 'PYPI'
secret_name: ${{ secrets.PYPI_SECRET_NAME }}
parse_json: true
- name: Install Dependencies
run: |
sudo -H python3 -m pip install black build twine
sudo apt-get install mypy
sudo apt-get install tree
- uses: actions/download-artifact@v3
with:
path: artifacts
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Dependencies
run: |
python3 --version
python3 -m pip install black build twine
pip show black
pip show build
pip show twine
sudo apt-get install mypy
sudo apt-get install tree
- name: Copy bindings
run: |
mkdir ./interop/python/radix_engine_toolkit
Expand Down Expand Up @@ -522,8 +526,8 @@ jobs:
- name: Check Builds
working-directory: ./interop/python/
run: |
twine check dist/*
python3 -m twine check dist/*
- name: Publish
working-directory: ./interop/python/
run: |
twine upload -u ${{ env.PYPI_USERNAME }} -p ${{ env.PYPI_PASSWORD }} dist/*
python3 -m twine upload -u ${{ env.PYPI_USERNAME }} -p ${{ env.PYPI_PASSWORD }} dist/*

0 comments on commit c4dcb98

Please sign in to comment.