Skip to content

Commit ea972fe

Browse files
committed
builder name changes
1 parent bb5938a commit ea972fe

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/builder-extras.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
${{ github.workspace }}/extras_tools_checksums.txt
121121
${{ github.workspace }}/extras_installer_checksums.txt
122122
123-
- name: Upload Setup as Artifact to Release
123+
- name: Upload Setup as Release download
124124
if: github.event_name == 'release'
125125
uses: softprops/action-gh-release@v2
126126
with:

.github/workflows/builder.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ jobs:
7575
working-directory: ${{ env.INSTALLER_SCRIPT_PATH }}
7676
run: |
7777
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"
8080
8181
- name: Upload Setup as Artifact
8282
if: github.event_name != 'release'
@@ -85,17 +85,17 @@ jobs:
8585
name: setup-installer-artifact
8686
path: |
8787
${{ 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
9090
91-
- name: Upload Setup as Artifact to Release
91+
- name: Upload Setup as Release download
9292
if: github.event_name == 'release'
9393
uses: softprops/action-gh-release@v2
9494
with:
9595
files: |
9696
${{ 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
9999
env:
100100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101101

0 commit comments

Comments
 (0)