Browse Source

Update Sophia.yml

pull/181/head
Dmitry Nefedov 3 years ago
committed by GitHub
parent
commit
76b8ac063a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/Sophia.yml

6
.github/workflows/Sophia.yml

@ -140,15 +140,13 @@ jobs:
- name: SHA256SUM
run: |
Get-ChildItem -Path "$PSScriptRoot\*.zip -Force" | ForEach-Object -Process {
"$($_.Name) $((Get-FileHash -LiteralPath $_.FullName -Algorithm SHA256).Hash)"
} | Set-Content -Path "$PSScriptRoot\SHA256SUM" -Encoding Default -Force
Get-ChildItem -Path "$PSScriptRoot\*.zip -Force" | fl *
- name: Upload archives to release
uses: svenstaro/upload-release-action@master
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Sophia*.zip, SHA256SUM
file: Sophia*.zip
tag: ${{ github.ref }}
overwrite: true
file_glob: true

Loading…
Cancel
Save