Skip to content

feat: try and fix action #9

feat: try and fix action

feat: try and fix action #9

Workflow file for this run

name: minifier
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
minify:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Minify Action
uses: dra1ex/[email protected]
- uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: minified
create_branch: true
commit_message: Apply minifications
push_options: "--force"