fix: fix error in yaml syntax #166
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dev Build | |
on: | |
push: | |
branches: | |
- dev** | |
pull_request: | |
types: [opened, synchronize, reopened] | |
env: | |
DART_SASS_VERSION: 1.79.6 | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dart Sass | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: 'sass/dart-sass' | |
tag: ${{ env.DART_SASS_VERSION }} | |
fileName: "dart-sass-${{ env.DART_SASS_VERSION }}-linux-x64.tar.gz" | |
extract: true | |
- name: Add Binary to PATH | |
run: | | |
echo "$GITHUB_WORKSPACE/dart-sass" >> "$GITHUB_PATH" | |
- name: Compile | |
run: | | |
cd ./src; make | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: my-artifact | |
path: | | |
./src/latex-theme/* |