Skip to content

Commit

Permalink
Attempt to use bash on windows (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anilm3 authored Jan 17, 2023
1 parent d4c45a6 commit 8cd61be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
working-directory: ${{ github.workspace }}/packages
- name: Generate Package sha256
working-directory: ${{ github.workspace }}/packages
run: Get-ChildItem .\*.tar.gz | Foreach-Object { Get-FileHash $_ sha256 | Out-File -Path "$_.sha256" }
run: for file in *.tar.gz; do sha256sum "$file" > "$file.sha256"; done
shell: bash
- uses: actions/upload-artifact@v3
with:
name: libddwaf-windows-${{ matrix.arch }}
Expand Down

0 comments on commit 8cd61be

Please sign in to comment.