Initial commit #1
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: Optimize Resource Pack | |
on: [push] | |
jobs: | |
packsquash: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # 変更しないでください | |
- name: Run PackSquash | |
uses: ComunidadAylas/PackSquash-action@v3 | |
with: | |
allow_optifine_mod: true # デフォルト: false / Optifine の有効化 | |
maximum_image_width_and_height: 8192 # デフォルト: 8192 / 画像の最大幅・高さ | |
- name: Download Optimized Pack | |
uses: actions/download-artifact@v4 | |
with: | |
name: Optimized pack | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: action-v${{ github.run_number }} | |
files: | | |
pack.zip |