Skip to content

Commit b9d8d44

Browse files
authored
Merge pull request git-lfs#3990 from bk2204/windows-ci
.github/workflows: temporarily fix path on Windows
2 parents 3ce3ae6 + 73099e6 commit b9d8d44

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
runs-on: windows-latest
3636
steps:
3737
- uses: actions/checkout@v1
38+
- run: |
39+
echo "::add-path::C:\Program Files\Git\mingw64\bin"
40+
echo "::add-path::C:\Program Files\Git\usr\bin"
41+
echo "::add-path::C:\Program Files\Git\bin"
3842
- run: mkdir -p "$HOME/go/bin"
3943
shell: bash
4044
- run: set GOPATH=%HOME%\go

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212
- uses: actions/setup-ruby@v1
13+
- run: |
14+
echo "::add-path::C:\Program Files\Git\mingw64\bin"
15+
echo "::add-path::C:\Program Files\Git\usr\bin"
16+
echo "::add-path::C:\Program Files\Git\bin"
1317
- run: mkdir -p "$HOME/go/bin"
1418
shell: bash
1519
- run: set GOPATH=%HOME%\go

0 commit comments

Comments
 (0)