Skip to content

Commit d34e308

Browse files
committed
renamed package to include version
1 parent 0193ae5 commit d34e308

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/DataMiner+CI+Automation.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,14 @@ jobs:
7878
- name: Find Installation Package
7979
id: findInstallationPackage
8080
run: |
81-
echo dmappPackageName=$(find _DataMinerInstallationPackage -type f -name '*.dmapp') >> $GITHUB_OUTPUT
81+
path=$(find _DataMinerInstallationPackage -type f -name '*.dmapp')
82+
echo $path
83+
84+
newpath="${path%.*}_${{ github.ref_name }}.dmapp"
85+
echo $newpath
86+
87+
mv $path $newpath
88+
echo "dmappPackageName=$newpath" >> $GITHUB_OUTPUT
8289
8390
- name: Logging
8491
run: |

0 commit comments

Comments
 (0)