Skip to content

ci: done !?

ci: done !? #11

Workflow file for this run

name: Optimize resource pack
on: [push]
permissions:
contents: write
jobs:
packsquash:
name: Release 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: |
# # Optimize the pack in the /pack directory.
# pack_directory = './pack'
# # Set a custom output file path to work with the generated ZIP file
# # without needing to download its artifact in a separate step
# output_file_path = '/tmp/pack.zip'
# # Don't touch shaders
# shader_source_transformation_strategy = 'keep_as_is'
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip pack
run: zip -qq -r /pack.zip pack
working-directory: /
- name: Tag and create release
uses: softprops/action-gh-release@v2
with:
tag_name: action-v${{ github.run_number }}
files: ./pack.zip