Skip to content

[typeshare] Disable windows release #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading