File tree Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -18,30 +18,17 @@ jobs:
1818 with :
1919 ref : master
2020
21- - name : Prepare
22- shell : bash
23- run : |
24- echo "SERVER_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
25- echo "version is: ${{ env.SERVER_VERSION }}"
26-
27- - name : Post release updates
28- shell : bash
29- env :
30- UPLOAD_CHECKSUM : true
31- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32- run : |
33- scripts/ci/post_release_updates.sh
34-
3521 - name : Commit post release updates changes
3622 shell : bash
3723 env :
3824 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3925 run : |
4026 git config --global user.name 'github-actions[bot]'
4127 git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
42- git add scripts/installer.sh
43- git add docs/content/download-and-install.md
44- git add docs/content/download-and-install.template.md
28+
29+ echo "$(date)" >> file.txt
30+
31+ git add file.txt
4532 git commit --verbose -m "docs: ${{ env.SERVER_VERSION }} [skip ci]"
4633 git checkout -b release-docs-${{ env.SERVER_VERSION }}
4734 git push --verbose
5542 --body "This PR updates the corresponding documentation pages for the current release \`${{ env.SERVER_VERSION }}\`." \
5643 --base "master" \
5744 --head "release-docs-${{ env.SERVER_VERSION }}" \
58- --label "v2" --label "enhancement" --label "documentation"
45+ --label "v2" --label "enhancement" --label "documentation" \
46+ --draft
You can’t perform that action at this time.
0 commit comments