Skip to content

Commit b960293

Browse files
committed
test
1 parent 2488490 commit b960293

File tree

1 file changed

+2
-36
lines changed

1 file changed

+2
-36
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: maxim-lobanov/setup-xcode@v1
1717
with:
18-
xcode-version: 13
18+
xcode-version: 15
1919

2020
- uses: actions/checkout@v2
2121

@@ -58,52 +58,18 @@ jobs:
5858
path: |
5959
mac/dist/mac.zip
6060
61-
build-win:
62-
runs-on: windows-latest
63-
steps:
64-
- name: Add msbuild to PATH
65-
uses: microsoft/setup-msbuild@v1.1
66-
67-
- uses: actions/checkout@v2
68-
69-
# TODO:
70-
# - name: Tests
71-
# - run: g++ -o Tests/output -std=c++17 Tests/index.cpp && ./Tests/output
72-
# open `Developer PowerShell for VS 2022` or similar
73-
# $ cl .\Tests\index.cpp /std:c++17 /Fe"Tests/output.exe" /Fo"Tests/output.obj" | .\Tests\output.exe
74-
75-
- name: Build and zip the app
76-
working-directory: ./win
77-
run: |
78-
bash buildSetVersion.sh ${{github.ref_name}}
79-
powershell .\buildApp.ps1
80-
81-
- name: Upload zip
82-
uses: actions/upload-artifact@v4
83-
with:
84-
name: winArtifact
85-
retention-days: 1
86-
path: |
87-
win/dist/win.zip
88-
8961
release:
9062
runs-on: ubuntu-latest
91-
needs: [build-mac, build-win]
63+
needs: [build-mac]
9264
steps:
9365
- uses: actions/download-artifact@v4
9466
with:
9567
name: macArtifact
9668
path: buildMac
9769

98-
- uses: actions/download-artifact@v4
99-
with:
100-
name: winArtifact
101-
path: buildWin
102-
10370
- name: Release
10471
uses: softprops/action-gh-release@v1
10572
if: startsWith(github.ref, 'refs/tags/')
10673
with:
10774
files: |
10875
buildMac/mac.zip
109-
buildWin/win.zip

0 commit comments

Comments
 (0)