diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dca86fdce7..1dc6888cb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: - name: Retrieve PyMAPDL version run: | - echo "::set-output name=PYMAPDL_VERSION::$(python -c "from ansys.mapdl.core import __version__; print(__version__)")" + echo "{PYMAPDL_VERSION}={$(python -c 'from ansys.mapdl.core import __version__; print(__version__)')}" >> $GITHUB_OUTPUT echo "PyMAPDL version is: $(python -c "from ansys.mapdl.core import __version__; print(__version__)")" id: version @@ -104,7 +104,7 @@ jobs: run: pip wheel . -w wheelhouse - name: Zip wheelhouse - uses: vimtor/action-zip@v1 + uses: vimtor/action-zip@master with: files: wheelhouse dest: ${{ env.PACKAGE_NAME }}-v${{ steps.version.outputs.PYMAPDL_VERSION }}-wheelhouse-${{ runner.os }}-${{ matrix.python-version }}.zip @@ -177,7 +177,7 @@ jobs: - name: Retrieve PyMAPDL version run: | - echo "::set-output name=PYMAPDL_VERSION::$(python -c "from ansys.mapdl.core import __version__; print(__version__)")" + echo "{PYMAPDL_VERSION}={$(python -c 'from ansys.mapdl.core import __version__; print(__version__)')}" >> $GITHUB_OUTPUT echo "PyMAPDL version is: $(python -c "from ansys.mapdl.core import __version__; print(__version__)")" id: version