Skip to content

Commit

Permalink
Fix Windows executable upload
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Jul 2, 2024
1 parent 667b1ef commit 970f9fb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:
strategy:
matrix:
arch: [x64, arm64]
os: [linux, macos, win]
os: [linux, win]
include:
- os: linux
target: node18-linux
- os: macos
target: node18-macos
- os: win
target: node18-win

Expand Down Expand Up @@ -62,4 +60,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: infisical-${{ matrix.os }}-${{ matrix.arch }}
path: backend/binary/infisical-${{ matrix.os }}-${{ matrix.arch }}
path: ${{ format('backend/binary/infisical-{}-{}{}', matrix.os, matrix.arch, matrix.os == 'windows-latest' && '.exe' || '') }}

0 comments on commit 970f9fb

Please sign in to comment.