Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Oct 17, 2024
1 parent ebc32e1 commit b97cf87
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
run: gcc await.c -o await_${{ matrix.os }} -lpthread

- name: Generate autocompletion scripts
if: matrix.os == 'ubuntu-latest'
run: |
mkdir -p releases
mkdir -p autocompletions
Expand All @@ -58,7 +57,13 @@ jobs:
- name: Upload Binary
uses: actions/upload-artifact@v4
with:
path: await_${{ matrix.os }}|autocompletions
path: await_${{ matrix.os }}
overwrite: true

- name: Upload autocompletions
uses: actions/upload-artifact@v4
with:
path: autocompletions
overwrite: true

release:
Expand Down

0 comments on commit b97cf87

Please sign in to comment.