Skip to content

Commit

Permalink
fix(ci): do not pass any params to build binary scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Mar 7, 2021
1 parent 3c145fd commit 27545b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- run: npm ci --no-save
- name: Build Unix binary
if: matrix.target != 'win'
run: npm run build:binary:unix -- vim-doge-${{ matrix.target }}
run: npm run build:binary:unix
- name: Build Windows binary
if: matrix.target == 'win'
run: npm run build:binary:windows vim-doge-${{ matrix.target }}
run: npm run build:binary:windows
- name: Setup vim
uses: thinca/action-setup-vim@v1
id: vim
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci --no-save
- name: Build binary
run: npm run build:binary:unix -- vim-doge-${{ matrix.target }}
run: npm run build:binary:unix
- name: Setup neovim
uses: thinca/action-setup-vim@v1
id: vim
Expand Down

0 comments on commit 27545b4

Please sign in to comment.