Skip to content

Commit

Permalink
CI: Drop ::set-output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 3, 2023
1 parent 5a92c44 commit e2a3f6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
docker pull openturns/manylinux2014_x86_64
docker run --rm -e MAKEFLAGS='-j2' -v `pwd`:/io openturns/manylinux2014_x86_64 /io/build-wheels-linux.sh master ${{ matrix.abi }}
- id: getfilename
run: echo "::set-output name=file::$(ls wheelhouse/*.whl)"
run: echo "file=$(ls wheelhouse/*.whl)" >> $GITHUB_OUTPUT
- name: Archive
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
MAKEFLAGS: -j3
run: ./build-wheels-macos.sh master ${{ matrix.abi }}
- id: getfilename
run: echo "::set-output name=file::$(ls wheelhouse/*.whl)"
run: echo "file=$(ls wheelhouse/*.whl)" >> $GITHUB_OUTPUT
- name: Archive
uses: actions/upload-artifact@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
matrix:
abi: [cp38, cp39, cp310, cp311]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/manylinux2014_x86_64
Expand All @@ -32,7 +32,7 @@ jobs:
matrix:
abi: [cp38, cp39, cp310, cp311]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/archlinux-mingw
Expand All @@ -57,13 +57,13 @@ jobs:
matrix:
abi: [cp38, cp39, cp310, cp311]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
env:
MAKEFLAGS: -j3
run: ./build-wheels-macos.sh v1.21 ${{ matrix.abi }}
- id: getfilename
run: echo "::set-output name=file::$(ls wheelhouse/*.whl)"
run: echo "file=$(ls wheelhouse/*.whl)" >> $GITHUB_OUTPUT
- name: Archive wheel
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit e2a3f6f

Please sign in to comment.