|
9 | 9 | os: [ubuntu-latest, macos-latest] |
10 | 10 | runs-on: ${{ matrix.os }} |
11 | 11 | steps: |
12 | | - - uses: actions/checkout@master |
| 12 | + - uses: actions/checkout@v1 |
13 | 13 | - run: script/cibuild |
14 | 14 | - run: make release |
15 | 15 | - run: mkdir -p bin/assets |
|
22 | 22 | name: Build on Windows |
23 | 23 | runs-on: windows-latest |
24 | 24 | steps: |
25 | | - - uses: actions/checkout@master |
| 25 | + - uses: actions/checkout@v1 |
26 | 26 | - run: mkdir -p "$HOME/go/bin" |
27 | 27 | shell: bash |
28 | 28 | - run: set GOPATH=%HOME%\go |
|
57 | 57 | os: [ubuntu-latest, macos-latest] |
58 | 58 | runs-on: ${{ matrix.os }} |
59 | 59 | steps: |
60 | | - - uses: actions/checkout@master |
| 60 | + - uses: actions/checkout@v1 |
61 | 61 | - run: git clone -b master https://github.com/git/git.git "$HOME/git" |
62 | 62 | - run: script/build-git "$HOME/git" |
63 | 63 | - run: script/cibuild |
|
68 | 68 | os: [ubuntu-latest, macos-latest] |
69 | 69 | runs-on: ${{ matrix.os }} |
70 | 70 | steps: |
71 | | - - uses: actions/checkout@master |
| 71 | + - uses: actions/checkout@v1 |
72 | 72 | - run: git clone -b v2.0.0 https://github.com/git/git.git "$HOME/git" |
73 | 73 | - run: script/build-git "$HOME/git" |
74 | 74 | - run: script/cibuild |
| 75 | + build-docker: |
| 76 | + name: Build Linux packages |
| 77 | + runs-on: ubuntu-latest |
| 78 | + steps: |
| 79 | + - uses: actions/checkout@v1 |
| 80 | + - uses: actions/setup-ruby@v1 |
| 81 | + - run: git clone https://github.com/git-lfs/build-dockers.git "$HOME/build-dockers" |
| 82 | + - run: (cd "$HOME/build-dockers" && ./build_dockers.bsh) |
| 83 | + - run: DOCKER_AUTOPULL=0 ./docker/run_dockers.bsh |
0 commit comments