customize dbus-cxx recipe for NI #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ni_upload_to_jfrog | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'recipes/dbus-cxx/**' | ||
env: | ||
REPO_CI: "https://push.artifacts.ni.com/artifactory/api/conan/rnd-conan-ci" | ||
REPO_PRE: "https://push.artifacts.ni.com/artifactory/api/conan/rnd-conan-pre" | ||
REPO_PROTO: "https://push.artifacts.ni.com/artifactory/api/conan/rnd-conan-proto" | ||
jobs: | ||
upload_to_jfrog: | ||
name: Upload to JFrog | ||
runs-on: ubuntu-latest | ||
environment: jfrog-ci | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: master | ||
- uses: actions/setup-python@v5 | ||
python-version: 3.10 | ||
- run: | ||
pip install conan==2.3 | ||
conan remote add rnd-conan-ci ${ REPO_CI } | ||
conan remote login rnd-conan-ci ${{ vars.JFROG_USERNAME }} --password ${{ secrets.JFROG_ACCESS_TOKEN }} | ||
conan create recipes/dbus-cxx/2.x.x --version 2.4.0 --build=missing | ||
conan upload --remote rnd-conan-ci --only-recipe dbus-cxx/2.4.0 |