diff --git a/.github/workflows/assets.yml b/.github/workflows/assets.yml index f92778b5..ba7f3b87 100644 --- a/.github/workflows/assets.yml +++ b/.github/workflows/assets.yml @@ -37,7 +37,7 @@ jobs: - name: Wheel path id: wheel working-directory: pybuild/dist/ - run: echo "##[set-output name=wheel;]$(ls *.whl)" + run: echo "{wheel}={$(ls *.whl)}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: pypi-macos-py${{ matrix.python }} @@ -91,7 +91,7 @@ jobs: - name: Wheel path id: wheel working-directory: wheelhouse - run: echo "##[set-output name=wheel;]$(ls *.whl)" + run: echo "{wheel}={$(ls *.whl)}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: pypi-linux-${{ matrix.cpython_version }} @@ -158,7 +158,7 @@ jobs: - name: Wheel path id: wheel working-directory: wheelhouse - run: echo "##[set-output name=wheel;]$(ls *.whl)" + run: echo "{wheel}={$(ls *.whl)}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: pypi-linux-${{ matrix.cpython_version }} @@ -197,7 +197,7 @@ jobs: - name: Wheel path id: wheel working-directory: pybuild/dist/ - run: echo "##[set-output name=wheel;]$(Get-ChildItem -name *.whl)" + run: echo "{wheel}={$(Get-ChildItem -name *.whl)}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: pypi-windows-py${{ matrix.python }}