Skip to content

Commit 2a8777e

Browse files
authored
Update assemble_toolkit.yml
1 parent 794c8a5 commit 2a8777e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/assemble_toolkit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)