Skip to content

Commit 4255930

Browse files
authoredSep 30, 2023
Update the version of Sass used by the website on release (#2102)
1 parent 507e439 commit 4255930

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎.github/workflows/ci.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -589,14 +589,21 @@ jobs:
589589
deploy_website:
590590
name: "Deploy sass-lang.com"
591591
runs-on: ubuntu-latest
592-
needs: [bootstrap, bourbon, foundation, bulma]
592+
needs: [deploy_npm]
593593
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass'"
594594
steps:
595595
- uses: actions/checkout@v4
596596
with:
597597
repository: sass/sass-site
598598
token: ${{ secrets.SASS_SITE_TOKEN }}
599599

600+
- name: Get version
601+
id: version
602+
run: echo "version=${GITHUB_REF##*/}" | tee --append "$GITHUB_OUTPUT"
603+
604+
- name: Update Dart Sass version
605+
run: npm install sass@${{ steps.version.outputs.version }}
606+
600607
- uses: EndBug/add-and-commit@v9
601608
with:
602609
author_name: Sass Bot

0 commit comments

Comments
 (0)
Please sign in to comment.