-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Brian Towles <[email protected]>
- Loading branch information
1 parent
7d64ce5
commit dc3c91b
Showing
2 changed files
with
13 additions
and
13 deletions.
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 |
---|---|---|
|
@@ -27,19 +27,19 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Create/update text file | ||
run: | | ||
echo "\"\"\"Version info.\"\"\"" > cdpctl/__version__.py | ||
echo "__version__ = \"${{ env.RELEASE_VERSION }}\"" >> cdpctl/__version__.py | ||
# - name: Create/update text file | ||
# run: | | ||
# echo "\"\"\"Version info.\"\"\"" > cdpctl/__version__.py | ||
# echo "__version__ = \"${{ env.RELEASE_VERSION }}\"" >> cdpctl/__version__.py | ||
|
||
- name: Commit and Push | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
# use account 'github-actions[bot]' to set the git config | ||
git add -A | ||
git commit -m "automated update of version for release" | ||
git push | ||
# - name: Commit and Push | ||
# run: | | ||
# git config --global user.name "github-actions[bot]" | ||
# git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
# # use account 'github-actions[bot]' to set the git config | ||
# git add -A | ||
# git commit -m "automated update of version for release" | ||
# git push | ||
|
||
- name: Push to GitHub Packages | ||
uses: docker/[email protected] | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""Version info.""" | ||
__version__ = "2021.07.29.01" | ||
__version__ = "2021.07.30.01" |