mirror of
https://github.com/ClementTsang/bottom
synced 2025-02-16 21:28:26 +00:00
ci: fix deploy script for completion directory copy (#577)
Adds an explicit mkdir to the completions directory. No idea why it was bugging out before though, it worked fine on nightly builds.
This commit is contained in:
parent
c7626057c9
commit
7e9e18faac
2 changed files with 4 additions and 2 deletions
3
.github/workflows/deployment.yml
vendored
3
.github/workflows/deployment.yml
vendored
|
@ -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
|
||||
|
|
3
.github/workflows/nightly.yml
vendored
3
.github/workflows/nightly.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue