Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

deprecated notice

deprecated notice #17

Workflow file for this run

on:
push:
branches:
- main
jobs:
build_css:
runs-on: ubuntu-latest
steps:
- name: Checkout source Git branch
uses: actions/checkout@v2
- name: Compile CSS from SCSS files
uses: gha-utilities/[email protected]
with:
source: src/source.scss
destination: src/source.css
- name: Add and Commit changes to build branch
run: |
git config --local user.email '[email protected]'
git config --local user.name 'GitHub Action'
git add .
git commit -m '[skip ci] Update compiled CSS files'
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}