diff --git a/.github/workflows/m1_ci.yml b/.github/workflows/m1_ci.yml index 044a23bc2..513cb1e06 100644 --- a/.github/workflows/m1_ci.yml +++ b/.github/workflows/m1_ci.yml @@ -14,11 +14,7 @@ jobs: - name: Clean repository submodules # See https://github.com/actions/checkout/issues/385 run: | - git submodule deinit . - git submodule | cut -c43- | while read -r line; do (git rm "$line"); done - git config --local -l | grep submodule | sed -e 's/^\(submodule\.[^.]*\)\(.*\)/\1/g' | while read -r line; do (git config --local --remove-section "$line"); done - rm -rf .gitmodules .git/modules - git reset --hard HEAD + sudo rm -fr $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE - name: Checkout uses: actions/checkout@v2 - name: Setup Zig