summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/deployment.yml3
-rw-r--r--.github/workflows/nightly.yml3
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index 90ab9bb3..e04718c3 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -224,7 +224,8 @@ jobs:
- name: Move autocomplete to working directory
shell: bash
run: |
- cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
+ mkdir completion
+ cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out/. completion
- name: Strip release binary (macOS or Linux x86-64/i686)
if: matrix.triple.strip == true
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 21beb3b8..aefab297 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -218,7 +218,8 @@ jobs:
- name: Move autocomplete to working directory
shell: bash
run: |
- cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
+ mkdir completion
+ cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out/. completion
- name: Strip release binary (macOS or Linux x86-64/i686)
if: matrix.triple.strip == true