Skip to content

Commit

Permalink
chore: migrate from ruby-sass to dart-sass
Browse files Browse the repository at this point in the history
  • Loading branch information
Cp Dong committed Oct 31, 2024
1 parent 70282d3 commit 5db80d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: robinraju/release-downloader@v1
with:
repository: 'sass/dart-sass'
latest: true
fileName: 'dart-sass-*-linux-x64.tar.gz'
extract: true
run: |
sudo apt install ruby sass -y
echo "$HOME/dart-sass" >> "$GITHUB_PATH"
- name: Compile
run: |
cd ./src; make
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
uses: robinraju/release-downloader@v1
with:
repository: 'sass/dart-sass'
latest: true
fileName: 'dart-sass-*-linux-x64.tar.gz'
extract: true
run: |
sudo apt install ruby sass -y
echo "$HOME/dart-sass" >> "$GITHUB_PATH"
- name: Compile
run: |
cd ./src; make all-and-compress
Expand Down

0 comments on commit 5db80d2

Please sign in to comment.