File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -38,16 +38,20 @@ jobs:
3838 run : |
3939 docker run --rm multipy bash -c "if [[ ${{ matrix.python-minor-version }} -gt 7 ]]; then pip install -r compat-requirements.txt && multipy/runtime/build/interactive_embedded_interpreter --pyscript multipy/runtime/test_compat.py; fi"
4040
41+ - name : Set Python Version
42+ run : |
43+ echo "python-version=${{ matrix.python-major-version }}.${{ matrix.python-minor-version }}" >> $GITHUB_ENV
44+
4145 - name : Create Tarball
4246 run : |
4347 docker cp $(docker run -d multipy):/opt/dist/multipy .
44- tar -czvf multipy_runtime_python${{ matrix .python-version }}.tar.gz multipy/
48+ tar -czvf multipy_runtime_python${{ env .python-version }}.tar.gz multipy/
4549
4650 - name : Update nightly release
4751 uses : pyTooling/Actions/releaser@main
4852 with :
49- tag : nightly-runtime-python${{ matrix .python-version }}
53+ tag : nightly-runtime-python${{ env .python-version }}
5054 rm : true
5155 token : ${{ secrets.GITHUB_TOKEN }}
5256 files : |
53- multipy_runtime_python${{ matrix .python-version }}.tar.gz
57+ multipy_runtime_python${{ env .python-version }}.tar.gz
You can’t perform that action at this time.
0 commit comments