From 7d16be8704291a047b499e0cfe79d82cbfb3236b Mon Sep 17 00:00:00 2001
From: "Lars T. Kyllingstad" <lars.kyllingstad@sintef.no>
Date: Mon, 20 Nov 2023 12:09:56 +0100
Subject: [PATCH] Force uploads from CI

---
 .github/workflows/ci-conan.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml
index 68f6cc2..c92c7e0 100644
--- a/.github/workflows/ci-conan.yml
+++ b/.github/workflows/ci-conan.yml
@@ -36,7 +36,7 @@ jobs:
           cd build
           conan remote add osp https://osp.jfrog.io/artifactory/api/conan/conan-local --force
           conan create -s build_type=${{ matrix.build_type }} -s compiler.libcxx=libstdc++11 -o "libcosim/*:${{ matrix.option_shared }}" -b missing .
-          conan upload --confirm --remote=osp 'fmilibrary*'
+          conan upload --confirm --force --remote=osp 'fmilibrary*'
           EOF
           chmod 0755 /tmp/osp-builder-docker/entrypoint.sh
       - name: Build Docker image
@@ -69,4 +69,4 @@ jobs:
       - run: conan profile detect
       - run: conan remote add osp https://osp.jfrog.io/artifactory/api/conan/conan-local --force
       - run: conan create -s build_type=${{ matrix.build_type }} -o fmilibrary/*:${{ matrix.option_shared }} .
-      - run: conan upload -c -r osp 'fmilibrary*'
+      - run: conan upload --confirm --force --remote=osp 'fmilibrary*'