Skip to content

Commit

Permalink
ci: remove windows from cross-compile builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nosduco committed Dec 27, 2023
1 parent fdd52e8 commit 6c2bd59
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ jobs:
OS: ubuntu-latest
- TARGET: x86_64-apple-darwin
OS: macos-latest
- TARGET: x86_64-pc-windows-msvc
OS: windows-latest
env:
NAME: nforwardauth
TARGET: ${{ matrix.TARGET }}
Expand Down Expand Up @@ -122,12 +120,7 @@ jobs:
- name: Compress
run: |
mkdir -p ./artifacts
# windows is the only OS using a different convention for executable file name
if [[ $OS =~ ^windows.*$ ]]; then
EXEC=$NAME.exe
else
EXEC=$NAME
fi
EXEC=$NAME
if [[ $GITHUB_REF_TYPE =~ ^tag$ ]]; then
TAG=$GITHUB_REF_NAME
else
Expand Down

0 comments on commit 6c2bd59

Please sign in to comment.