Skip to content

Commit

Permalink
Remove set-output invocations (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-vitaliy authored Nov 3, 2022
1 parent 17e2e23 commit 03a10a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion create_package/create_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ echo "__version__ = '$version'" > "./$PACKAGE_NAME/_version.py"
echo "REPOSITORY TO PUBLISH IS $REPO_URL"
poetry config repositories.custom_repo "$REPO_URL"
poetry build && poetry publish -r custom_repo
echo "::set-output name=version::$version"
echo "version=$version" >> "$GITHUB_OUTPUT"
2 changes: 1 addition & 1 deletion install_poetry/install_poetry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fi
curl -sSL https://install.python-poetry.org | python3 -
export PATH=/github/home/.local/bin:$PATH
poetry config repositories.custom_repo "$REPO_URL"
echo "::set-output name=custom_repo_name::custom_repo"
echo "custom_repo_name=custom_repo" >> "$GITHUB_OUTPUT"

POETRY_ADDITIONAL_OPTIONS=()
if [[ -n "$EXTRAS" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion semver_release/semver_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ else
fi
nextVersion="v$providedMajor.$providedMinor.$nextRevision"
gh release create "$nextVersion" --generate-notes
echo "::set-output name=version::$nextVersion"
echo "version=$nextVersion" >> "$GITHUB_OUTPUT"

0 comments on commit 03a10a2

Please sign in to comment.