Skip to content

Commit

Permalink
fix: clear workspace before build
Browse files Browse the repository at this point in the history
  • Loading branch information
Slava-Shchipunov committed Aug 14, 2024
1 parent 96f91d8 commit 847bcfb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ jobs:
build_env: ${{ fromJson(needs.generate-config.outputs.job-config) }}

steps:
- name: Clear Workspace
run: git clean -fdx
- name: Clean previous build artifacts
run: |
rm -rf bin/packages/*
rm -rf bin/targets/*
rm -rf build_dir/*
rm -rf dl/*
rm -rf tmp/*
rm -rf tools/*
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 847bcfb

Please sign in to comment.