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 695c32d commit dad33f8Copy full SHA for dad33f8
.github/workflows/release.yml
@@ -22,6 +22,18 @@ jobs:
22
uses: actions/checkout@v2
23
with:
24
path: textadept/modules/file_diff
25
+ - name: Git init if necessary
26
+ shell: bash
27
+ run: |
28
+ # If git version is less than 2.18, a git clone will not be made in
29
+ # this container. In that case, make a temporary repository so
30
+ # "make release" can archive the repo's contents for release.
31
+ if [[ -d .git ]]; then exit 0; fi
32
+ git init
33
+ git add .
34
+ git config --global user.email "[email protected]"
35
+ git config --global user.name "none"
36
+ git commit -m 'none'
37
- name: Build
38
shell: bash
39
run: |
0 commit comments