Skip to content

Commit 1ed4e74

Browse files
committed
Updated GitHub action to run on Ubuntu 20.04.
1 parent 1b26024 commit 1ed4e74

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-20.04
99
container: ghcr.io/orbitalquark/textadept-build:v2.0
1010
steps:
1111
- name: Checkout textadept
@@ -22,18 +22,6 @@ jobs:
2222
uses: actions/checkout@v2
2323
with:
2424
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'
3725
- name: Build
3826
shell: bash
3927
run: |

0 commit comments

Comments
 (0)