You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Release with HEMTT
2.0.0
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.
Relative path of released addon before it is zipped. (is equal to ./releases/<version>
)
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@master
id: build
- run: echo 'Release ${{ steps.build.outputs.zip_name }} is ready.'
- uses: actions/upload-artifact@master
with:
name: 'packed-mod'
path: ${{ steps.build.outputs.zip_path }}
The scripts and documentation in this project are released under the MIT License