Skip to content

Commit

Permalink
Merge pull request #18880 from Michael-Gardner/HPCC-32247
Browse files Browse the repository at this point in the history
HPCC-32247 Add ECLIDE Deployment to JFrog internal repositories

Reviewed-by: Gordon Smith <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Jul 17, 2024
2 parents 4280470 + acb21b9 commit 2b70219
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,16 @@ jobs:
generateReleaseNotes: false
prerelease: ${{ contains(github.ref, '-rc') }}
artifacts: "./ECLIDE/build/*.exe"

- name: Upload Assets to Jfrog (windows)
if: ${{ github.repository_owner == 'hpcc-systems' }}
shell: bash
run: |
cd ./ECLIDE/build
packages=($(ls -1 hpccsystems-*.exe ))
for _package in ${packages[@]}; do
curl -u${{ secrets.JFROG_USERNAME }}:${{ secrets.JFROG_PASSWORD }} "https://${{ secrets.JFROG_REGISTRY }}/hpccpl-windows-local/LN/windows/x86_64/${_package}" -T ${_package}
done
- name: Upload error logs
if: ${{ failure() || cancelled() }}
Expand Down

0 comments on commit 2b70219

Please sign in to comment.