Skip to content

Commit

Permalink
add action to upload to JFrog
Browse files Browse the repository at this point in the history
patches to recipes should add to the list of uploads
  • Loading branch information
ErikHons committed May 29, 2024
1 parent c2db562 commit 0d4d5b1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ni_upload_to_jfrog.yml
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 }}

0 comments on commit 0d4d5b1

Please sign in to comment.