Skip to content

Commit eb09d75

Browse files
authored
Fix a few more deployment issues (#1998)
1 parent ce909e4 commit eb09d75

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ jobs:
593593
repository: sass/sass-site
594594
token: ${{ secrets.GH_TOKEN }}
595595

596-
- uses: EndBug/add-and-commit@v8
596+
- uses: EndBug/add-and-commit@v9
597597
with:
598598
author_name: Sass Bot
599599
author_email: [email protected]
@@ -604,7 +604,7 @@ jobs:
604604
name: "Release Embedded Host"
605605
runs-on: ubuntu-latest
606606
needs: [deploy_github_linux, deploy_github_linux_qemu, deploy_github]
607-
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
607+
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass'"
608608
steps:
609609
- uses: actions/checkout@v3
610610
with:
@@ -637,7 +637,7 @@ jobs:
637637
curl https://raw.githubusercontent.com/sass/dart-sass/${{ steps.version.outputs.version }}/CHANGELOG.md > CHANGELOG.md
638638
shell: bash
639639

640-
- uses: EndBug/add-and-commit@v8
640+
- uses: EndBug/add-and-commit@v9
641641
with:
642642
author_name: Sass Bot
643643
author_email: [email protected]

CHANGELOG.md

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

37
* No user-visible changes.

pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 7.1.2
2+
3+
* No user-visible changes.
4+
15
## 7.1.1
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: 7.1.1
5+
version: 7.1.2
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.63.1
13+
sass: 1.63.2
1414

1515
dev_dependencies:
1616
dartdoc: ^5.0.0

pubspec.yaml

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

0 commit comments

Comments
 (0)