diff options
| author | Stefan Boberg <[email protected]> | 2025-10-26 19:58:08 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-26 19:58:08 +0100 |
| commit | 74f0d0b89bab62aa0f3497a89bad078f88c42e34 (patch) | |
| tree | 328b8b0dfc7eb65b1dfdc97e46b2e2b9ad85252f /.github/workflows | |
| parent | remove config log upload since there's nothing to upload from vcpkg (diff) | |
| download | zen-74f0d0b89bab62aa0f3497a89bad078f88c42e34.tar.xz zen-74f0d0b89bab62aa0f3497a89bad078f88c42e34.zip | |
corrected env var -> XMAKE_GLOBALDIR
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 6a74b85ab..15fabad78 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -2,7 +2,7 @@ name: Create Release env: XMAKE_VERSION: 2.9.9 WINDOWS_SDK_VERSION: 22621 - XMAKE_GLOBAL_DIR: ${{ github.workspace }}/.xmake_global + XMAKE_GLOBALDIR: ${{ github.workspace }}/.xmake_global on: push: diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 74b27b870..0272d13af 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -3,7 +3,7 @@ env: VCPKG_VERSION: 2024.06.15 # This version must be the same across .yml github workflows and if it is bumped the README.md must be updated to reflect this XMAKE_VERSION: 2.9.9 WINDOWS_SDK_VERSION: 22621 - XMAKE_GLOBAL_DIR: ${{ github.workspace }}/.xmake_global + XMAKE_GLOBALDIR: ${{ github.workspace }}/.xmake_global on: pull_request: |