summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-05-19 17:17:20 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-05-19 17:17:20 +0800
commit9935b3fdb9d901302019d7dbeb9d4c2060325359 (patch)
treee24ee6bb6f50a972e034260c63ce9335d6c8668e /.github
parent62e6c3ed2e9f45afe229872eafa7937617329840 (diff)
Try with manual sparse checkout :D
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 871d8df..12085d3 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -118,10 +118,10 @@ jobs:
shell: bash
run: |
set -x
- git sparse-checkout init
- git sparse-checkout set '/*' '!/tests/'
- pwd
- ls -l
+ echo ${{ github.sha }} > .git/HEAD
+ git read-tree HEAD
+ # This leaves us with just enough files to build and package
+ git restore src/ 'Cargo.*' tui-react/ ci/ CHANGELOG.md LICENSE README.md
- name: Install packages (Ubuntu)
if: matrix.os == 'ubuntu-18.04'