Skip to content

Commit

Permalink
DP-7014 sort artifactory upload
Browse files Browse the repository at this point in the history
This will upload files in alphabetical order but it also constructs
artifactory links in sorted order for easier use
  • Loading branch information
TimoSairiala committed Sep 21, 2023
1 parent 2af6ce3 commit 430c3c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tiiuae-pixhawk-and-saluki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
|--------|------|"
artifactory_base_url="https://ssrc.jfrog.io/artifactory/"
for pkg in $(find bin -type f); do
for pkg in $(find bin -type f|sort); do
file_name=$(basename $pkg)
ext="${file_name##*.}"
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
|--------|------|"
artifactory_base_url="https://artifactory.ssrcdevops.tii.ae/artifactory/"
for pkg in $(find bin -type f); do
for pkg in $(find bin -type f|sort); do
file_name=$(basename $pkg)
ext="${file_name##*.}"
Expand Down

0 comments on commit 430c3c5

Please sign in to comment.