Skip to content

Commit aadd8dc

Browse files
[typeshare] Disable windows release (#5)
## Description * We have no need for windows binary at the moment ## Test Plan * CI ## Revert Plan * Revert
1 parent 4d88281 commit aadd8dc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,11 @@ jobs:
102102
dist-args: --artifacts=local --target=aarch64-unknown-linux-gnu
103103
target: 'aarch64-unknown-linux-gnu'
104104
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
105-
- os: windows-2019
106-
dist-args: --artifacts=local --target=x86_64-pc-windows-msvc
107-
target: 'x86_64-pc-windows-msvc'
108-
install-dist: irm https://github.com/axodotdev/cargo-dist/releases/download/v0.0.4/cargo-dist-v0.0.4-installer.ps1 | iex
105+
# We don't care for windows right now
106+
# - os: windows-2019
107+
# dist-args: --artifacts=local --target=x86_64-pc-windows-msvc
108+
# target: 'x86_64-pc-windows-msvc'
109+
# install-dist: irm https://github.com/axodotdev/cargo-dist/releases/download/v0.0.4/cargo-dist-v0.0.4-installer.ps1 | iex
109110

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

0 commit comments

Comments
 (0)