From 16f0b7eee58662eff955c9b4bd3cd6d1fe3c12f2 Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Fri, 23 Aug 2024 00:27:48 +0300 Subject: [PATCH] Add option to remove all binaries --- .github/workflows/remove.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/remove.yml b/.github/workflows/remove.yml index 476f5c0..038a146 100644 --- a/.github/workflows/remove.yml +++ b/.github/workflows/remove.yml @@ -7,6 +7,7 @@ on: description: Package name type: choice options: + - all - odrcore - pdf2htmlex - fontforge @@ -36,3 +37,7 @@ jobs: - run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }} - run: conan remove --remote=odr "${{ github.event.inputs.package_name }}/*#*" --confirm + if: ${{ github.event.inputs.package_name != 'all' }} + + - run: conan remove --remote=odr '*' --confirm + if: ${{ github.event.inputs.package_name == 'all' }}