Create minify.yml
This commit is contained in:
parent
37d52bf8b0
commit
badf81c806
|
@ -0,0 +1,30 @@
|
|||
name: Minify Scripts
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Lua
|
||||
uses: ljmf00/setup-lua@v1.0.0
|
||||
with:
|
||||
lua-version: 5.3
|
||||
install-luarocks: true
|
||||
|
||||
- name: Install Minifier
|
||||
run: wget https://raw.githubusercontent.com/stravant/lua-minify/master/minify.lua minify.lua
|
||||
|
||||
- name: Minify Movescript
|
||||
run: lua minify.lua src/movescript.lua > min/movescript.lua
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v4
|
Loading…
Reference in New Issue