File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,20 +21,20 @@ jobs:
2121 - name : Assemble tookit
2222 run : .\Build-Toolkit.ps1
2323 shell : powershell
24- - name : Verify ZIP archive
25- run : 7z t Toolkit.zip
24+ - name : Verify archive
25+ run : 7z t Toolkit.7z
2626 shell : powershell
2727 - name : Create hash of archive
28- run : Get-FileHash -Algorithm SHA256 .\Toolkit.zip | Format-List | Out-File -FilePath Hash.txt -Encoding "utf8"
28+ run : Get-FileHash -Algorithm SHA256 .\Toolkit.7z | Format-List | Out-File -FilePath Hash.txt -Encoding "utf8"
2929 shell : powershell
30- - name : Create release for the ZIP archive
30+ - name : Create release for the archive
3131 env :
3232 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3333 COMMIT_REF : ${{ github.sha }}
3434 GITHUB_REPOSITORY : ${{ github.repository }}
3535 run : |
3636 $TAG=Get-Date -UFormat "%Y%d%m%H%m"
37- gh release create "$TAG" --latest --repo="$env:GITHUB_REPOSITORY" --title="Bundle build from commit $env:COMMIT_REF" --generate-notes Toolkit.zip Hash.txt Metadata.json
37+ gh release create "$TAG" --latest --repo="$env:GITHUB_REPOSITORY" --title="Bundle build from commit $env:COMMIT_REF" --generate-notes Toolkit.7z Hash.txt Metadata.json
3838 shell : powershell
3939 - name : Update release information file
4040 run : git config --global user.email "gha@github.com"; git config --global user.name "GHActionBot"; git commit -m "Sync release file" last_release_info.txt; git push
You can’t perform that action at this time.
0 commit comments