Skip to content

Commit 6a405b5

Browse files
committed
TO REMOVE: check docker push is working correctly
1 parent b98df14 commit 6a405b5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/cicd_deploy.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ jobs:
4646
run: |
4747
echo "VERSION=v$(python -m lidro._version)" >> $GITHUB_ENV
4848
49-
- name: Check tag and version number consistency
50-
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
51-
run: |
52-
if [[ ${{ github.ref_name }} == ${{ env.VERSION }} ]]
53-
then
54-
echo "OK: Tag name and _version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) match"
55-
else
56-
echo "NOK: Tag name and _version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) don't match"
57-
exit 1
58-
fi
49+
# - name: Check tag and version number consistency
50+
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
51+
# run: |
52+
# if [[ ${{ github.ref_name }} == ${{ env.VERSION }} ]]
53+
# then
54+
# echo "OK: Tag name and _version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) match"
55+
# else
56+
# echo "NOK: Tag name and _version.py (${{ env.VERSION }}) version number (${{ github.ref_name }}) don't match"
57+
# exit 1
58+
# fi
5959

6060
# Login against a Docker registry except on dev branch
6161
# https://github.com/docker/login-action

0 commit comments

Comments
 (0)