-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
90 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Infinity Auto Packager by AL|EN (alienquake@hotmail.com) | ||
# A tool that automatically generates Infinity Engine mod packages when you publish a release. | ||
|
||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
InfinityAutoPackager: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Initial setup | ||
run: | | ||
git lfs uninstall | ||
git config --global core.autocrlf false | ||
git config --global core.ignorecase true | ||
- name: Clone repository using 'github.ref' from release | ||
uses: actions/checkout@master | ||
|
||
- name: Create Infinity Engine Mod Packages (.iemod and .zip) | ||
uses: ALIENQuake/CreateIEModZipPackage@master | ||
id: CreateIEModZipPackage | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload iemod package to latest release | ||
uses: svenstaro/upload-release-action@v1-release | ||
if: github.ref != 'refs/heads/master' | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.iemod | ||
asset_name: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.iemod | ||
tag: ${{ github.ref }} | ||
overwrite: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Never copy this from other mod, always use https://github.com/ALIENQuake/ProjectInfinity/wiki/Adding-metadata-for-mod | ||
# Filename must be the same as tp2 basename, placed at the same folder where | ||
# .tp2 file is located, use UTF8 (without BOM) encoding, everything is optional | ||
|
||
# ini section header is required to avoid false detection | ||
[Metadata] | ||
|
||
# Full name of the mod, without the version number, without the list of supported games | ||
Name = Hannah's Portrait Pack | ||
# Author name or nick, don't use an email address | ||
Author = Hannah Wallace; packaged by DavidW | ||
|
||
# Short description of the mod, main goals, features etc | ||
Description = This is a package to provide additional custom portraits for assignment to your Player Character (PC). It contains no additional content and does not touch your installation. | ||
|
||
# Web address of mod readme file (filename is case-sensitive!) You can link to txt, md, html, pdf etc. | ||
Readme = https://gibberlings3.github.io/Documentation/readmes/readme-hannah_portraits.html, https://gibberlings3.github.io/Documentation/readmes/readme-hannah_portraits-french.html | ||
|
||
# Web address of mod dedicated forum or forum thread | ||
Forum = https://www.gibberlings3.net/forums/forum/28-miscellaneous-released-mods/ | ||
|
||
# Web address of mod personal Homepage, no need to duplicate with a mod dedicated forum | ||
Homepage = https://www.gibberlings3.net/gallery/album/19-hannahs-portrait-pack/ | ||
|
||
# if you use GitHub.com, simply use https://github.com/AccountOrOrgName/RepositoryName | ||
# read more about Delta Updates https://github.com/ALIENQuake/ProjectInfinity/wiki/Delta-Updates-for-mods-hosted-at-Github | ||
Download = https://github.com/Gibberlings3/Hannahs_Portrait_Pack | ||
|
||
# Type of LABELs used by the mod, read more here https://www.gibberlings3.net/forums/topic/32516-tutorial-what-is-label | ||
LabelType = GloballyUnique | ||
|
||
# Dynamic Install Order, use mod ID as tp2 name without file extension and `setup-` prefix | ||
|
||
# This mod must be installed *before* the mods listed after the keyword | ||
Before = | ||
|
||
# This mod must be installed *after* the mods listed after the keyword | ||
After = bg2fixpack |
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
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
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
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