-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Updated sed command to reference setup.py in src
- Loading branch information
w1ll1am23
committed
Dec 10, 2022
1 parent
6c0ef2b
commit 577640e
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
if: ${{steps.semantic_release_info.outputs.version != ''}} | ||
run: | | ||
echo "Version: ${{steps.semantic_release_info.outputs.version}}" | ||
sed -i "s/VERSION = \".*\"/VERSION = \"${{steps.semantic_release_info.outputs.version}}\"/g" setup.py | ||
sed -i "s/VERSION = \".*\"/VERSION = \"${{steps.semantic_release_info.outputs.version}}\"/g" src/setup.py | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "William Scanlon" | ||
git add -A | ||
|