Skip to content

Remove openlibm from artifactory #13

Remove openlibm from artifactory

Remove openlibm from artifactory #13

Workflow file for this run

name: Remove package from artifactory
on:
workflow_dispatch:
inputs:
package_name:
description: Package name
type: choice
options:
- odrcore
- pdf2htmlex
- fontforge
- poppler
- poppler-data
- cairo
- openlibm
- fontconfig
- glib
- tmpfile
package_version:
description: Package version. * for all versions
default: '*'
required: true
run-name: Remove ${{ inputs.package_name }} from artifactory
jobs:
remove:
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: pip install --upgrade conan
- run: conan remote add odr https://artifactory.opendocument.app/artifactory/api/conan/conan
- run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
- run: conan remove --remote=odr "${{ github.event.inputs.package_name }}/${{ github.event.inputs.package_version }}#*" --confirm