Update Spicetify and Spotify versions in README.md #264
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
on: | |
push: | |
branches: [main, beta] | |
name: Build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Compile Sass | |
run: npx sass Comfy/app.scss:Comfy/app.css --no-source-map --style=compressed | |
- name: Push Changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
if: ${{ github.repository == 'Comfy-Themes/Spicetify' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta') }} | |
with: | |
commit_message: "chore: compile sass" | |
commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | |
branch: ${{ github.ref }} |