Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya authored Jan 18, 2024
1 parent a1a7da1 commit 1c3539b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@master
- name: Get version
id: get_version
run: echo "::set-output name=version::$(grep -Po '\d*\.\d*\.\d*' src/iris_relay/__init__.py)"
run: echo "version=$(grep -Po '\d*\.\d*\.\d*' src/iris_relay/__init__.py)" >> $GITHUB_OUTPUT
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 1c3539b

Please sign in to comment.