We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9476d7d commit 677a112Copy full SHA for 677a112
.github/workflows/build.yaml
@@ -18,12 +18,13 @@ jobs:
18
destination: platform=macOS
19
configuration: Release
20
action: build
21
-
+ build-settings: CONFIGURATION_BUILD_DIR=build/Release
22
+
23
- name: Debug
- run: ls && ls build && ls build/Release
24
+ run: ls && ls build/Release
25
26
- name: Archive Build Artifacts
- run: zip -r Switcher-${{ github.ref_name == contains(github.ref, 'refs/tags/v') && github.ref_name || github.run_number }}.zip Switcher.app
27
+ run: zip -r Switcher-${{ github.ref_name == contains(github.ref, 'refs/tags/v') && github.ref_name || github.run_number }}.zip build/Release
28
29
- name: Upload Build Artifacts
30
uses: actions/upload-artifact@v3
0 commit comments