Skip to content

Merge branch 'main' of https://github.com/lodine-software/aerocss #27

Merge branch 'main' of https://github.com/lodine-software/aerocss

Merge branch 'main' of https://github.com/lodine-software/aerocss #27

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Minify CSS
# Controls when the workflow will run
on: [push, workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
minify:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so auto-minify job can access it
- uses: actions/checkout@v2
- name: Auto Minify
uses: nizarmah/auto-minify@v2.1
# Auto commits minified files to the repository
# Ignore it if you don't want to commit the files to the repository
- name: Auto committing minified files
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Auto CSS files"
branch: ${{ github.ref }}