Skip to content

Commit be9c3ac

Browse files
authored
Run Windows ARM64 releases on windows-latest instead (#2275)
See https://github.com/orgs/community/discussions/131594
1 parent d4b1939 commit be9c3ac

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.github/workflows/build-windows.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
- arch: ia32
2020
runner: windows-latest
2121
- arch: arm64
22-
runner: windows-arm64
22+
# This should be windows-arm64, but it's broken by several issues:
23+
# https://github.com/orgs/community/discussions/131594
24+
# https://github.com/orgs/community/discussions/131754
25+
runner: windows-latest
2326

2427
steps:
2528
- uses: actions/checkout@v4

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.77.8
2+
3+
* No user-visible changes.
4+
15
## 1.77.7
26

37
* Declarations that appear after nested rules are deprecated, because the

pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 10.4.8
2+
3+
* No user-visible changes.
4+
15
## 10.4.7
26

37
* No user-visible changes.

pkg/sass_api/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 10.4.7
5+
version: 10.4.8
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: ">=3.0.0 <4.0.0"
1111

1212
dependencies:
13-
sass: 1.77.7
13+
sass: 1.77.8
1414

1515
dev_dependencies:
1616
dartdoc: ">=6.0.0 <9.0.0"

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.77.7
2+
version: 1.77.8
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)