diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-26 00:27:01 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-06-02 00:35:51 +0200 |
| commit | 909f72badd96779d2e73c4f48af83f9fe413704f (patch) | |
| tree | 2f7ef9fcf9b335919d0ed5f564df2fc8887ea54d /.github/workflows | |
| parent | clear build folder (diff) | |
| download | zen-909f72badd96779d2e73c4f48af83f9fe413704f.tar.xz zen-909f72badd96779d2e73c4f48af83f9fe413704f.zip | |
clear build folder with Powershell - temp disable validate
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/create_release.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/validate.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 334832098..aa269f5dd 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -38,7 +38,7 @@ jobs: key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 - name: Clear build folder - run: rm -rf build + run: Remove-Item -Recurse build - name: Bundle run: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index e2f5d0ef2..9c163a268 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,7 +2,7 @@ name: Validate on: pull_request: - types: [opened, reopened, synchronize] + types: [opened, reopened] #, synchronize] branches: [ main ] jobs: |