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 @@ -37,16 +37,20 @@ jobs:
3737 run : |
3838 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"
3939
40+ - name : Set Python Version
41+ run : |
42+ echo "python-version=${{ matrix.python-major-version }}.${{ matrix.python-minor-version }}" >> $GITHUB_ENV
43+
4044 - name : Create Tarball
4145 run : |
4246 docker cp $(docker run -d multipy):/opt/dist/multipy .
43- tar -czvf multipy_runtime_python${{ matrix .python-version }}.tar.gz multipy/
47+ tar -czvf multipy_runtime_python${{ env .python-version }}.tar.gz multipy/
4448
4549 - name : Update nightly release
4650 uses : pyTooling/Actions/releaser@main
4751 with :
48- tag : nightly-runtime-python${{ matrix .python-version }}
52+ tag : nightly-runtime-python${{ env .python-version }}
4953 rm : true
5054 token : ${{ secrets.GITHUB_TOKEN }}
5155 files : |
52- multipy_runtime_python${{ matrix .python-version }}.tar.gz
56+ multipy_runtime_python${{ env .python-version }}.tar.gz
You can’t perform that action at this time.
0 commit comments