We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 507e439 commit 4255930Copy full SHA for 4255930
.github/workflows/ci.yml
@@ -589,14 +589,21 @@ jobs:
589
deploy_website:
590
name: "Deploy sass-lang.com"
591
runs-on: ubuntu-latest
592
- needs: [bootstrap, bourbon, foundation, bulma]
+ needs: [deploy_npm]
593
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass'"
594
steps:
595
- uses: actions/checkout@v4
596
with:
597
repository: sass/sass-site
598
token: ${{ secrets.SASS_SITE_TOKEN }}
599
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
607
- uses: EndBug/add-and-commit@v9
608
609
author_name: Sass Bot
0 commit comments