Skip to content
Snippets Groups Projects
Commit b532bf24 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Fix CI on "empty" branch

parent bbf0abd5
No related branches found
No related tags found
1 merge request!7Resolve "Fix build"
Pipeline #6767 passed
...@@ -18,7 +18,6 @@ android:build-debug: ...@@ -18,7 +18,6 @@ android:build-debug:
- > - >
if [ $(git tag -l "${TAG_NAME}") ]; then if [ $(git tag -l "${TAG_NAME}") ]; then
echo "Tag ${TAG_NAME} already exists." echo "Tag ${TAG_NAME} already exists."
exit 1
fi fi
- flutter clean - flutter clean
- flutter packages get - flutter packages get
...@@ -48,7 +47,6 @@ application:release: ...@@ -48,7 +47,6 @@ application:release:
- > - >
if [ $(git tag -l "${TAG_NAME}") ]; then if [ $(git tag -l "${TAG_NAME}") ]; then
echo "Tag ${TAG_NAME} already exists." echo "Tag ${TAG_NAME} already exists."
exit 1
else else
git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME}" git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME}"
git push origin "${TAG_NAME}" git push origin "${TAG_NAME}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment