Skip to content

Commit

Permalink
[typeshare] Disable windows release (#5)
Browse files Browse the repository at this point in the history
## Description
* We have no need for windows binary at the moment

## Test Plan
* CI

## Revert Plan
* Revert
  • Loading branch information
naveenOnarayanan authored Nov 7, 2024
1 parent 63db72b commit 8a48ead
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,11 @@ jobs:
dist-args: --artifacts=local --target=aarch64-unknown-linux-gnu
target: 'aarch64-unknown-linux-gnu'
install-dist: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.0.4/cargo-dist-v0.0.4-installer.sh | sh
- os: windows-2019
dist-args: --artifacts=local --target=x86_64-pc-windows-msvc
target: 'x86_64-pc-windows-msvc'
install-dist: irm https://github.com/axodotdev/cargo-dist/releases/download/v0.0.4/cargo-dist-v0.0.4-installer.ps1 | iex
# We don't care for windows right now
# - os: windows-2019
# dist-args: --artifacts=local --target=x86_64-pc-windows-msvc
# target: 'x86_64-pc-windows-msvc'
# install-dist: irm https://github.com/axodotdev/cargo-dist/releases/download/v0.0.4/cargo-dist-v0.0.4-installer.ps1 | iex

runs-on: ${{ matrix.os }}
env:
Expand All @@ -123,7 +124,7 @@ jobs:
# The two platforms don't agree on how to talk about env vars but they
# do agree on 'cat' and '$()' so we use that to marshal values between commands.
run: |
scripts/build.sh --target "${{ matrix.target }}" "${{ github.ref_name }}"
scripts/build.sh --target "${{ matrix.target }}" --version "${{ github.ref_name }}"
# Mark the Github Release™ as a non-draft now that everything has succeeded!
publish-release:
Expand Down

0 comments on commit 8a48ead

Please sign in to comment.