Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
aecc1a82fd | |||
00512dd1fb | |||
d020dd3e01 | |||
cb67fb4dcc | |||
f602e188cf | |||
56d8d27a9e | |||
b23ea3b62e | |||
b9fafcb2fa | |||
a72fcca54b | |||
d02c72749a | |||
5a50151d17 | |||
73b069c8c8 | |||
d9b0c48a94 |
25
.github/workflows/packsquash.yml
vendored
Normal file
25
.github/workflows/packsquash.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Optimize resource pack
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**'
|
||||
jobs:
|
||||
packsquash:
|
||||
name: Optimize resource pack
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # A non-shallow repository clone is required
|
||||
- name: Run PackSquash
|
||||
uses: ComunidadAylas/PackSquash-action@v4
|
||||
with:
|
||||
packsquash_version: latest
|
||||
options: |
|
||||
pack_directory = '.'
|
||||
output_file_path = '/tmp/pack.zip'
|
||||
- name: Create release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: /tmp/pack.zip
|
Loading…
Reference in New Issue
Block a user