diff options
| author | James McCoy <jamessan@jamessan.com> | 2020-12-06 22:31:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-06 22:31:30 -0500 |
| commit | ee5ece084cf76fc90f0bd3aa4e0ddeaaca0bc51a (patch) | |
| tree | 4f72cb8a48460dded135d6678483a8aa1a6bdf78 /.github/workflows | |
| parent | 7477703586af3710584888b197d84a0938a27fe9 (diff) | |
| parent | b32124fce260f1132dcda7699905613bea2e888f (diff) | |
| download | rneovim-ee5ece084cf76fc90f0bd3aa4e0ddeaaca0bc51a.tar.gz rneovim-ee5ece084cf76fc90f0bd3aa4e0ddeaaca0bc51a.tar.bz2 rneovim-ee5ece084cf76fc90f0bd3aa4e0ddeaaca0bc51a.zip | |
Merge pull request #13471 from jamessan/release-fixes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 610d62211a..2acd615da1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,8 @@ jobs: release: ${{ steps.build.outputs.release }} steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Install dependencies run: | sudo apt-get update @@ -44,6 +46,8 @@ jobs: runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Install dependencies run: | sudo apt-get update @@ -67,6 +71,8 @@ jobs: runs-on: macos-10.15 steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Install brew packages run: | brew update >/dev/null |