Merge pull request #14 from danieldegroot2/api-url #162
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: Minify Workflow | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
Minify: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: Minify code | |
uses: anthonyftwang/[email protected] | |
# Checks-out your repository | |
- uses: actions/checkout@v2 | |
with: | |
ref: build | |
# Auto-commit to repository | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Minimize from main | |
branch: build |