Skip to content

Commit

Permalink
Upgrade deprecated set-output command.
Browse files Browse the repository at this point in the history
  • Loading branch information
rturrado committed Dec 16, 2023
1 parent 7120ad9 commit 60dd829
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 60dd829

Please sign in to comment.