Skip to content

Commit

Permalink
Add option to remove all binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Aug 22, 2024
1 parent e45515f commit 16f0b7e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/remove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
description: Package name
type: choice
options:
- all
- odrcore
- pdf2htmlex
- fontforge
Expand Down Expand Up @@ -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' }}

0 comments on commit 16f0b7e

Please sign in to comment.