Fix deploy configuration (#1994)

This commit is contained in:
Natalie Weizenbaum 2023-06-07 17:15:18 -07:00 committed by GitHub
parent c3ed547932
commit d82654bc3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 6 deletions

View File

@ -572,8 +572,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1 - uses: ./.github/util/initialize
- run: dart pub get with: {github-token: "${{ github.token }}"}
- name: Deploy - name: Deploy
run: dart run grinder pkg-chocolatey-deploy run: dart run grinder pkg-chocolatey-deploy

View File

@ -1,3 +1,7 @@
## 1.63.1
* No user-visible changes.
## 1.63.0 ## 1.63.0
### JavaScript API ### JavaScript API

View File

@ -1,3 +1,7 @@
## 7.1.1
* No user-visible changes.
## 7.1.0 ## 7.1.0
* No user-visible changes. * No user-visible changes.

View File

@ -2,7 +2,7 @@ name: sass_api
# Note: Every time we add a new Sass AST node, we need to bump the *major* # Note: Every time we add a new Sass AST node, we need to bump the *major*
# version because it's a breaking change for anyone who's implementing the # version because it's a breaking change for anyone who's implementing the
# visitor interface(s). # visitor interface(s).
version: 7.1.0 version: 7.1.1
description: Additional APIs for Dart Sass. description: Additional APIs for Dart Sass.
homepage: https://github.com/sass/dart-sass homepage: https://github.com/sass/dart-sass
@ -10,7 +10,7 @@ environment:
sdk: ">=3.0.0 <4.0.0" sdk: ">=3.0.0 <4.0.0"
dependencies: dependencies:
sass: 1.63.0 sass: 1.63.1
dev_dependencies: dev_dependencies:
dartdoc: ^5.0.0 dartdoc: ^5.0.0

View File

@ -1,5 +1,5 @@
name: sass name: sass
version: 1.63.0 version: 1.63.1
description: A Sass implementation in Dart. description: A Sass implementation in Dart.
homepage: https://github.com/sass/dart-sass homepage: https://github.com/sass/dart-sass

View File

@ -28,7 +28,7 @@ void main(List<String> args) {
pkg.executables.value = {"sass": "bin/sass.dart"}; pkg.executables.value = {"sass": "bin/sass.dart"};
pkg.chocolateyNuspec.value = _nuspec; pkg.chocolateyNuspec.value = _nuspec;
pkg.homebrewRepo.value = "sass/homebrew-sass"; pkg.homebrewRepo.value = "sass/homebrew-sass";
pkg.homebrewFormula.value = "sass.rb"; pkg.homebrewFormula.value = "Formula/sass.rb";
pkg.jsRequires.value = [ pkg.jsRequires.value = [
pkg.JSRequire("immutable", target: pkg.JSRequireTarget.all), pkg.JSRequire("immutable", target: pkg.JSRequireTarget.all),
pkg.JSRequire("chokidar", target: pkg.JSRequireTarget.cli), pkg.JSRequire("chokidar", target: pkg.JSRequireTarget.cli),