Skip to content

Commit

Permalink
🧪 Fix dir removal OS compat @ CI
Browse files Browse the repository at this point in the history
`rm -rfv` only works in Bash, and GHA doesn't use it on Windows by
default. This patch corrects that.
  • Loading branch information
webknjaz committed Nov 20, 2023
1 parent 1d14458 commit f42316b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ jobs:
${{ needs.pre-setup.outputs.dists-artifact-name }}
- name: Delete the `yarl/` directory to prevent accidental imports
run: rm -rfv yarl
shell: bash
- name: Download distributions
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit f42316b

Please sign in to comment.