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 6d14f4e commit c01d78eCopy full SHA for c01d78e
.github/workflows/docs_preview.yml
@@ -36,3 +36,14 @@ jobs:
36
source-dir: docs/_build/html
37
preview-branch: gh-pages
38
custom-url: fortls.fortran-lang.org
39
+ - name: Setup Git
40
+ run: |
41
+ git config user.name "github-actions[bot]"
42
+ git config user.email "github-actions[bot]@users.noreply.github.com"
43
+ - name: Build and Deploy
44
45
+ # Commands to build and deploy documentation
46
+ git checkout -b gh-pages
47
+ git add -A
48
+ git commit -m "Deploy preview for PR ${GITHUB_REF##*/} 🛫"
49
+ git push --force origin gh-pages
0 commit comments