From 1600f695ef9dd9cded563f816915be798b4c8114 Mon Sep 17 00:00:00 2001 From: Guillaume Berche Date: Wed, 3 Jan 2024 15:43:35 +0100 Subject: [PATCH] on-commits.yml no --force flag to bosh create-release https://bosh.io/docs/cli-v2/#create-release --force include uncommitted changes in the release directory; it should only be used when building dev releases --- .github/workflows/on-commits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on-commits.yml b/.github/workflows/on-commits.yml index 2f05fbbd..3675f650 100644 --- a/.github/workflows/on-commits.yml +++ b/.github/workflows/on-commits.yml @@ -129,7 +129,7 @@ jobs: fi echo "creating bosh release: ${name}-${version}.tgz" - bosh create-release --force --final --version=${version} --tarball=${name}-${version}.tgz + bosh create-release --final --version=${version} --tarball=${name}-${version}.tgz echo "pushing changes to git repository" git add .final_builds