forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patches to recipes should add to the list of uploads
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: ni_upload_to_jfrog | ||
on: | ||
workflow_dispatch: | ||
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" | ||
|
||
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 | ||
with: | ||
python-version: '3.10' | ||
- run: pip install conan==2.3 | ||
- run: conan profile detect --force | ||
# add the -ci repo | ||
- run: conan remote add rnd-conan-ci ${{ env.REPO_CI }} | ||
- run: conan remote login rnd-conan-ci ${{ vars.JFROG_USERNAME }} --password ${{ secrets.JFROG_ACCESS_TOKEN }} | ||
# add the -pre repo | ||
- run: conan remote add rnd-conan-pre ${{ env.REPO_PRE }} | ||
- run: conan remote login rnd-conan-pre ${{ vars.JFROG_USERNAME }} --password ${{ secrets.JFROG_ACCESS_TOKEN }} |