diff options
author | Saturneric <[email protected]> | 2021-07-13 05:19:02 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-13 05:19:02 +0000 |
commit | a15a41be41e2968fcbebef9427eec6cf6e8c2d63 (patch) | |
tree | 541fcca3f4411609e987b69dcb59c660d9fdeee8 | |
parent | Update Document. (diff) | |
download | GpgFrontend-a15a41be41e2968fcbebef9427eec6cf6e8c2d63.tar.gz GpgFrontend-a15a41be41e2968fcbebef9427eec6cf6e8c2d63.zip |
Fix Workflows;
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/debug.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 2de9716c..11194af0 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -123,7 +123,7 @@ jobs: - name: Build GpgFrontend # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config $env.BUILD_TYPE}} -- -j 2 + run: cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -j 2 if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' - name: Configure CMake & Build Binary(Windows) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af9e6f28..22f268b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -129,7 +129,7 @@ jobs: - name: Build GpgFrontend # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config $env.BUILD_TYPE}} -- -j 2 + run: cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -j 2 if: matrix.os == 'ubuntu-16.04' || matrix.os == 'macos-latest' - name: Package App Bundle (macOS) |