75
75
working-directory : ${{ env.INSTALLER_SCRIPT_PATH }}
76
76
run : |
77
77
Set-ExecutionPolicy Bypass -Scope Process -Force
78
- .\generate-checksums.ps1 -Directory "${{ env.SRC_PATH }}/toolkit" -OutputFile "${{ github.workspace }}/tools_checksums .txt"
79
- .\generate-checksums.ps1 -Directory "${{ github.workspace }}" -FilePattern "*.exe" -NoRecurse -OutputFile "${{ github.workspace }}/installer_checksums .txt"
78
+ .\generate-checksums.ps1 -Directory "${{ env.SRC_PATH }}/toolkit" -OutputFile "${{ github.workspace }}/toolkit_tools_checksums .txt"
79
+ .\generate-checksums.ps1 -Directory "${{ github.workspace }}" -FilePattern "*.exe" -NoRecurse -OutputFile "${{ github.workspace }}/toolkit_installer_checksums .txt"
80
80
81
81
- name : Upload Setup as Artifact
82
82
if : github.event_name != 'release'
@@ -85,17 +85,17 @@ jobs:
85
85
name : setup-installer-artifact
86
86
path : |
87
87
${{ github.workspace }}/*.exe
88
- ${{ github.workspace }}/tools_checksums .txt
89
- ${{ github.workspace }}/installer_checksums .txt
88
+ ${{ github.workspace }}/toolkit_tools_checksums .txt
89
+ ${{ github.workspace }}/toolkit_installer_checksums .txt
90
90
91
- - name : Upload Setup as Artifact to Release
91
+ - name : Upload Setup as Release download
92
92
if : github.event_name == 'release'
93
93
uses : softprops/action-gh-release@v2
94
94
with :
95
95
files : |
96
96
${{ github.workspace }}/*.exe
97
- ${{ github.workspace }}/tools_checksums .txt
98
- ${{ github.workspace }}/installer_checksums .txt
97
+ ${{ github.workspace }}/toolkit_tools_checksums .txt
98
+ ${{ github.workspace }}/toolkit_installer_checksums .txt
99
99
env :
100
100
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
101
101
0 commit comments