Skip to content

Commit dc3c91b

Browse files
committed
Fix for build and docker release
Signed-off-by: Brian Towles <btowles@cloudera.com>
1 parent 7d64ce5 commit dc3c91b

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/publish_image_github_packages.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727
- name: Checkout
2828
uses: actions/checkout@v2
2929

30-
- name: Create/update text file
31-
run: |
32-
echo "\"\"\"Version info.\"\"\"" > cdpctl/__version__.py
33-
echo "__version__ = \"${{ env.RELEASE_VERSION }}\"" >> cdpctl/__version__.py
30+
# - name: Create/update text file
31+
# run: |
32+
# echo "\"\"\"Version info.\"\"\"" > cdpctl/__version__.py
33+
# echo "__version__ = \"${{ env.RELEASE_VERSION }}\"" >> cdpctl/__version__.py
3434

35-
- name: Commit and Push
36-
run: |
37-
git config --global user.name "github-actions[bot]"
38-
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
39-
# use account 'github-actions[bot]' to set the git config
40-
git add -A
41-
git commit -m "automated update of version for release"
42-
git push
35+
# - name: Commit and Push
36+
# run: |
37+
# git config --global user.name "github-actions[bot]"
38+
# git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
39+
# # use account 'github-actions[bot]' to set the git config
40+
# git add -A
41+
# git commit -m "automated update of version for release"
42+
# git push
4343

4444
- name: Push to GitHub Packages
4545
uses: docker/build-push-action@v2.3.0

cdpctl/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version info."""
2-
__version__ = "2021.07.29.01"
2+
__version__ = "2021.07.30.01"

0 commit comments

Comments
 (0)