@@ -19,11 +19,12 @@ jobs:
19
19
- name : Build BenchmarkDotNet
20
20
run : ./build.bat --target Build
21
21
22
- - name : Download changelog
23
- run : ./build.bat --target DocFX_Changelog_Download --LatestVersions true --StableVersions true
24
- env :
25
- GITHUB_PRODUCT : ChangelogBuilder
26
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
+ # Temporary disabled because of the API limit
23
+ # - name: Download changelog
24
+ # run: ./build.bat --target DocFX_Changelog_Download --LatestVersions true --StableVersions true
25
+ # env:
26
+ # GITHUB_PRODUCT: ChangelogBuilder
27
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
28
28
29
- name : Build documentation
29
30
run : ./build.bat --target DocFX_Build
@@ -40,17 +41,22 @@ jobs:
40
41
runs-on : ubuntu-latest
41
42
steps :
42
43
43
- - name : Download Artifacts
44
- uses : actions/download-artifact@v1
45
- with :
46
- name : site
47
-
48
- - name : Deploy documentation
49
-
50
- with :
51
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
52
- BRANCH : gh-pages
53
- FOLDER : site
54
- GIT_CONFIG_NAME : Andrey Akinshin
55
- GIT_CONFIG_EMAIL :
[email protected]
56
- CLEAN : true
44
+ - name : Download Artifacts
45
+ uses : actions/download-artifact@v1
46
+ with :
47
+ name : site
48
+
49
+ - name : Checkout
50
+ uses : actions/checkout@v3
51
+ with :
52
+ ref : docs-stable
53
+
54
+ - name : Deploy documentation
55
+
56
+ with :
57
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
58
+ BRANCH : gh-pages
59
+ FOLDER : site
60
+ GIT_CONFIG_NAME : Andrey Akinshin
61
+ GIT_CONFIG_EMAIL :
[email protected]
62
+ CLEAN : true
0 commit comments