Skip to content

Commit

Permalink
chore: fixate Dart Sass version to 1.79.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubbu0129 authored and RalXYZ committed Nov 2, 2024
1 parent 8eeac77 commit 124924a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
types: [opened, synchronize, reopened]

env:
DART_SASS_VERSION: 1.79.6

jobs:
compile:
runs-on: ubuntu-latest
Expand All @@ -17,8 +20,8 @@ jobs:
uses: robinraju/release-downloader@v1
with:
repository: 'sass/dart-sass'
latest: true
fileName: 'dart-sass-*-linux-x64.tar.gz'
tag: ${{ env.DART_SASS_VERSION }}
fileName: "dart-sass-${{ env.DART_SASS_VERSION }}-linux-x64.tar.gz"
extract: true
- name: Add Binary to PATH
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
tags:
- v*

env:
DART_SASS_VERSION: 1.79.6

jobs:
release:
runs-on: ubuntu-latest
Expand All @@ -14,8 +17,8 @@ jobs:
uses: robinraju/release-downloader@v1
with:
repository: 'sass/dart-sass'
latest: true
fileName: 'dart-sass-*-linux-x64.tar.gz'
tag: ${{ env.DART_SASS_VERSION }}
fileName: "dart-sass-${{ env.DART_SASS_VERSION }}-linux-x64.tar.gz"
extract: true
- name: Add Binary to PATH
run: |
Expand Down

0 comments on commit 124924a

Please sign in to comment.