Don't exit if the branch to delete doesn't exist
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
8
Makefile
8
Makefile
@@ -251,28 +251,28 @@ gitlab-release-documentation: ## Trigger the documentation build and publication
|
||||
gitlab-release-documentation:
|
||||
git push
|
||||
git push --tags
|
||||
git push origin :releases/documentation
|
||||
git push origin :releases/documentation || true
|
||||
git push origin HEAD:releases/documentation
|
||||
|
||||
gitlab-release-docker: ## Trigger the Docker image build and publication using GitLab CI
|
||||
gitlab-release-docker:
|
||||
git push
|
||||
git push --tags
|
||||
git push origin :releases/docker
|
||||
git push origin :releases/docker || true
|
||||
git push origin HEAD:releases/docker
|
||||
|
||||
gitlab-release-python: ## Trigger the Python package build and publication using GitLab CI
|
||||
gitlab-release-python:
|
||||
git push
|
||||
git push --tags
|
||||
git push origin :releases/python
|
||||
git push origin :releases/python || true
|
||||
git push origin HEAD:releases/python
|
||||
|
||||
gitlab-release-all: ## Trigger the Python package, Docker image, and documentation build and publication using GitLab CI
|
||||
gitlab-release-all:
|
||||
git push
|
||||
git push --tags
|
||||
git push origin :releases/all
|
||||
git push origin :releases/all || true
|
||||
git push origin HEAD:releases/all
|
||||
|
||||
# Dev server
|
||||
|
||||
Reference in New Issue
Block a user