Skip to content

Commit 59c88ea

Browse files
committed
remove set-output in CI
1 parent b4891b4 commit 59c88ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ jobs:
7878
7979
- name: Set module version
8080
id: module
81-
run: echo ::set-output name=version::$(python -c 'from importlib.metadata import version; print(version("geojson_pydantic"))')
81+
run: |
82+
echo version=$(python -c'import geojson_pydantic; print(geojson_pydantic.__version__)') >> $GITHUB_OUTPUT
8283
8384
- name: Build and publish
8485
if: steps.tag.outputs.tag == steps.module.outputs.version

0 commit comments

Comments
 (0)