diff options
| author | Daniil Baturin <daniil@baturin.org> | 2021-01-15 18:44:14 +0700 |
|---|---|---|
| committer | Daniil Baturin <daniil@baturin.org> | 2021-01-15 18:44:40 +0700 |
| commit | 32225e8c14354c60fc4fa19d4cad3eea9ea7755e (patch) | |
| tree | 248ddc0969ec5d46bd7ccf83fb7ebe5d0fb68e81 /.github/workflows | |
| parent | 495bde0c30c3be39183ed9c9bc8e3e28a055abcb (diff) | |
| download | community.vyos.net-32225e8c14354c60fc4fa19d4cad3eea9ea7755e.tar.gz community.vyos.net-32225e8c14354c60fc4fa19d4cad3eea9ea7755e.zip | |
Add the original SASS to the build workflow.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2d5161..f76d0c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,8 @@ jobs: run: | echo Installing build dependencies sudo apt-get update - sudo apt-get -y install cmark make python3-boto3 python3-jinja2 + sudo apt-get -y install cmark make python3-boto3 python3-jinja2 npm + sudo npm install -g sass - name: Install soupault env: @@ -45,6 +46,11 @@ jobs: SOUPAULT_OPTS: "--profile live" run: | make all + + - name: Build CSS + run: + mkdir -p build/css/ + sass -I sass/ sass/main.sass > build/css/main.css - name: Deploy to Netlify env: |
