This repository was archived by the owner on Jul 9, 2023. It is now read-only.
File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,25 @@ jobs:
17
17
runs-on : windows-latest
18
18
steps :
19
19
- uses : actions/checkout@v2
20
+
20
21
- name : Install DocFX
22
+ if : github.ref == 'refs/heads/develop'
21
23
run : choco install docfx -y
24
+
22
25
- name : Build
23
26
run : dotnet build src/Titanium.Web.Proxy/Titanium.Web.Proxy.csproj
27
+
24
28
- name : Test
25
29
shell : pwsh
26
30
run : |
27
31
.\.github\install-unit-test-certificate.ps1
28
32
dotnet test tests/Titanium.Web.Proxy.UnitTests/Titanium.Web.Proxy.UnitTests.csproj
29
33
dotnet test tests/Titanium.Web.Proxy.IntegrationTests/Titanium.Web.Proxy.IntegrationTests.csproj
34
+
30
35
- name : Update Documentation
31
36
if : github.ref == 'refs/heads/develop'
32
37
run : docfx .github/docfx.json
38
+
33
39
- name : Publish Documentation
34
40
if : github.ref == 'refs/heads/develop'
35
41
uses : EndBug/add-and-commit@v9
@@ -38,11 +44,13 @@ jobs:
38
44
message : Update documentation
39
45
committer_name : GitHub Actions
40
46
committer_email :
[email protected]
47
+
41
48
- name : Publish Beta
42
49
if : github.ref == 'refs/heads/beta'
43
50
run : |
44
51
dotnet pack src/Titanium.Web.Proxy/Titanium.Web.Proxy.csproj --version-suffix "beta"
45
52
dotnet nuget push **\*.nupkg -s "nuget" -k "${{ secrets.NUGET_TOKEN }}"
53
+
46
54
- name : Publish Stable
47
55
if : github.ref == 'refs/heads/stable'
48
56
run : |
You can’t perform that action at this time.
0 commit comments