Choco verification file fixes (#23)

* Choco verification file fixes

* CI Build Fix
This commit is contained in:
Dan Probert 2021-09-28 10:48:30 +01:00 коммит произвёл GitHub
Родитель 9b62eba904
Коммит 2d95ac713b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 0 удалений

7
.github/workflows/ci-build.yml поставляемый
Просмотреть файл

@ -72,6 +72,13 @@ jobs:
filehash=$(sha256sum $f | awk '{print $1}') filehash=$(sha256sum $f | awk '{print $1}')
echo "$filename -- $filehash" >> ./${{ env.OUTPUT_DIR }}/${{ env.CHOCO_SRC_DIR }}/VERIFICATION.txt echo "$filename -- $filehash" >> ./${{ env.OUTPUT_DIR }}/${{ env.CHOCO_SRC_DIR }}/VERIFICATION.txt
done done
find ./templates -type f |
while read f
do
filename="$(basename $f) [$f]"
filehash=$(sha256sum $f | awk '{print $1}')
echo "$filename -- $filehash" >> ./${{ env.OUTPUT_DIR }}/${{ env.CHOCO_SRC_DIR }}/VERIFICATION.txt
done
- name: Create the Chocolatey package output directory - name: Create the Chocolatey package output directory
shell: bash shell: bash

Просмотреть файл

@ -19,3 +19,4 @@ You can use one of the following methods to obtain the checksum from a local fil
- Use chocolatey utility 'checksum.exe' - Use chocolatey utility 'checksum.exe'
File 'LICENSE.txt' is obtained from <https://github.com/Azure/aimazure/blob/main/LICENSE> File 'LICENSE.txt' is obtained from <https://github.com/Azure/aimazure/blob/main/LICENSE>