Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f82968 commit 16d8187Copy full SHA for 16d8187
1 file changed
.github/workflows/update-and-build.yml
@@ -53,3 +53,23 @@ jobs:
53
with:
54
name: build
55
path: Doc/build/html
56
+ commit-build:
57
+ runs-on: ubuntu-latest
58
+ needs: ['build-translation']
59
+ steps:
60
+ - uses: actions/checkout@master
61
+ - run: git pull
62
+ - uses: actions/download-artifact@master
63
+ with:
64
+ name: build
65
+ - run: rm -r docs
66
+ - run: mv build docs
67
+ - run: git config --local user.email '[email protected]'
68
+ name: Run git config --local user.email '…'
69
+ - run: git config --local user.name "GitHub Action's commit-build job"
70
+ - run: git add .
71
+ - run: git commit -m 'Update translation build' || true
72
+ - uses: ad-m/github-push-action@master
73
74
+ github_token: ${{ secrets.GITHUB_TOKEN }}
75
+ branch: 3.8
0 commit comments