Skip to content

Commit

Permalink
[workflows/build.yml] Fix PS output target
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf authored Jul 17, 2023
1 parent 717165c commit 19890ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ jobs:
asset_content_type: application/vnd.microsoft.portable-executable
- name: Get SHA2-256SUMS for youtube-dl.exe
id: sha256_win
run: echo "sha256_win=$((Get-FileHash youtube-dl.exe -Algorithm SHA256).Hash.ToLower())" >> "env:$GITHUB_OUTPUT"
run: echo "sha256_win=$((Get-FileHash youtube-dl.exe -Algorithm SHA256).Hash.ToLower())" >> "$env:GITHUB_OUTPUT"
- name: Get SHA2-512SUMS for youtube-dl.exe
id: sha512_win
run: echo "sha512_win=$((Get-FileHash youtube-dl.exe -Algorithm SHA512).Hash.ToLower())" >> "env:$GITHUB_OUTPUT"
run: echo "sha512_win=$((Get-FileHash youtube-dl.exe -Algorithm SHA512).Hash.ToLower())" >> "$env:GITHUB_OUTPUT"
- name: Install PyCrypto
shell: bash
run: |
Expand Down

0 comments on commit 19890ac

Please sign in to comment.