This action builds your HEMTT mod and then zips it. You could then use that zip and attach it as an artifact or to a release.
This input is optional (Default: true
)
Whether the build should be zipped.
This input is optional (Default: .
)
Working directory of hemtt.
Relative path of released addon before it is zipped. (is equal to ./releases/<version>
)
Name of mod. (is equal to modname
inside hemtt.toml)
Relative path of zipped mod. Will be not set if input zip_build
is false
Name of packed mod (without file extension). Will be not set if input zip_build
is false
.
steps:
- uses: actions/checkout@master
- uses: gruppe-adler/action-release-with-hemtt@v3
id: build
- run: echo 'Release ${{ steps.build.outputs.zip_name }} is ready.'
- uses: actions/upload-artifact@v3
with:
name: 'packed-mod'
path: ${{ steps.build.outputs.zip_path }}
The scripts and documentation in this project are released under the MIT License