File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313 - uses : actions/checkout@v4
1414 - id : extract_tag
1515 name : Extract tag name
16- run : echo "::set-output name= tag:: $(echo $GITHUB_REF | cut -d / -f 3)"
16+ run : echo "tag= $(echo $GITHUB_REF | cut -d / -f 3)" >> "$GITHUB_OUTPUT "
1717
1818 build-and-publish-test-pypi :
1919 needs : extract-tag
3939 echo "Checking if $VERSION for $PACKAGE_NAME exists on TestPyPI"
4040 NEW_VERSION=$(python3 .github/workflows/build_utils/test_version.py $PACKAGE_NAME $VERSION)
4141 echo "Version to be used for TestPyPI release: $NEW_VERSION"
42- echo "::set-output name= version:: $NEW_VERSION"
42+ echo "version= $NEW_VERSION" >> "$GITHUB_OUTPUT "
4343 - name : Update version in pyproject.toml
4444 run : sed -i '/#replace_package_version_marker/{n;s/version="[^"]*"/version="${{ steps.check_version.outputs.version }}"/;}' pyproject.toml
4545 - name : Update package name in pyproject.toml
You can’t perform that action at this time.
0 commit comments