From 78e7d523b36a1dae6c62d726eaf0af950cd7e44c Mon Sep 17 00:00:00 2001 From: Philipp Spiess Date: Mon, 25 Nov 2024 15:09:14 +0100 Subject: [PATCH] Win Arm64 CI --- .github/workflows/release.yml | 3 +++ CHANGELOG.md | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fc468f675d6..f58660ae16bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,8 @@ jobs: # Windows - os: windows-latest target: x86_64-pc-windows-msvc + - os: windows-latest + target: aarch64-pc-windows-msvc # macOS - os: macos-latest target: x86_64-apple-darwin @@ -208,6 +210,7 @@ jobs: run: | cd ${{ env.OXIDE_LOCATION }} cp bindings-x86_64-pc-windows-msvc/* ./npm/win32-x64-msvc/ + cp bindings-aarch64-pc-windows-msvc/* ./npm/win32-arm64-msvc/ cp bindings-x86_64-apple-darwin/* ./npm/darwin-x64/ cp bindings-aarch64-apple-darwin/* ./npm/darwin-arm64/ cp bindings-aarch64-linux-android/* ./npm/android-arm64/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 76dc831422f6..157b0aeaf73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Include a Windows ARM build for all npm packages ([#15171](https://github.com/tailwindlabs/tailwindcss/pull/15171)) + ### Fixed - Ensure any necessary vendor prefixes are generated for iOS Safari, Firefox, and Chrome ([#15166](https://github.com/tailwindlabs/tailwindcss/pull/15166))