We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72417a8 commit d3f490dCopy full SHA for d3f490d
.github/workflows/git-artifacts.yml
@@ -1,7 +1,7 @@
1
name: git-artifacts
2
3
on:
4
- workflow_dispatch:
+ push:
5
6
env:
7
REPOSITORY: git-for-windows/git
@@ -43,7 +43,11 @@ jobs:
43
REF: ${{github.ref}}
44
- name: clone build-extra
45
shell: bash
46
- run: git clone --depth=1 --single-branch -b main https://github.com/git-for-windows/build-extra
+ run: |
47
+ git clone --depth=1 --single-branch -b building-mingw-w64-git-should-not-need-to-install-dependencies \
48
+ https://github.com/dscho/build-extra &&
49
+ git -C build-extra update-ref refs/remotes/origin/main HEAD &&
50
+ git -C build-extra switch -C main
51
- name: create build-installers artifact
52
53
run: |
0 commit comments