File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change 17
17
- uses : actions/checkout@v2
18
18
with :
19
19
fetch-depth : 1
20
- repository : SwiftDocOrg/swift-doc
20
+ # repository: SwiftDocOrg/swift-doc
21
+ repository : compnerd/swift-doc
22
+ ref : swift-semantics-main
21
23
22
24
- uses : seanmiddleditch/gha-setup-vsdevenv@master
23
25
52
54
53
55
- name : build
54
56
run : |
55
- swift build -c release swift build -c release -Xlinker -LC:\Library\graphviz-development\usr\lib -Xcc -DLIBXML_STATIC -Xcc -IC:\Library\libxml2-development\usr\include -Xcc -IC:\Library\libxml2-development\usr\include\libxml2 -Xlinker -LC:\Library\libxml2-development\usr\lib -Xcc -IC:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\include -Xlinker -LC:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\lib
57
+ swift build -c release -Xlinker -LC:\Library\graphviz-development\usr\lib -Xcc -DLIBXML_STATIC -Xcc -IC:\Library\libxml2-development\usr\include -Xcc -IC:\Library\libxml2-development\usr\include\libxml2 -Xlinker -LC:\Library\libxml2-development\usr\lib -Xcc -IC:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\include -Xlinker -LC:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\lib
58
+
59
+ - uses : actions/create-release@v1
60
+ env :
61
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
+ id : create_release
63
+ with :
64
+ draft : true
65
+ prerelease : true
66
+ release_name : swift-doc-${{ matrix.tag }}
67
+ tag_name : swift-doc-${{ matrix.tag }}
68
+ - uses : actions/upload-release-asset@v1.0.2
69
+ env :
70
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
71
+ with :
72
+ asset_content_type : application/octet-stream
73
+ asset_name : swift-doc.exe
74
+ asset_path : .build\x86_64-unknown-windows-msvc\release\swift-doc.exe
75
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
You can’t perform that action at this time.
0 commit comments