Skip to content

Commit

Permalink
Add github packaging, remove content of backup directory
Browse files Browse the repository at this point in the history
  • Loading branch information
btigi committed Sep 5, 2021
1 parent 0828aef commit c6c22cb
Show file tree
Hide file tree
Showing 14 changed files with 54 additions and 3 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/InfinityAutoPackager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Infinity Auto Packager by AL|EN ([email protected])
# 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

- name: Upload zip 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 }}.zip
asset_name: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.zip
tag: ${{ github.ref }}
overwrite: true
Binary file removed Setup-iiTweak.exe
Binary file not shown.
7 changes: 5 additions & 2 deletions iiTweak/Readme-iiTweak.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
iiTweak 7.00
------------
iiTweak 7.1
-----------

+) Contents
===========
Expand Down Expand Up @@ -99,6 +99,9 @@ If you find any errors, please let me know immediately, specifying as much as yo

+) Section 5. Version History
=============================
V7.1 [05/09/2021]
- Maintenace release RE: mod packaging

V7 [07/01/2007]
- Added 'All stores buy stolen goods' component
- Added 'All stores buy all item types' component
Expand Down
Binary file removed iiTweak/backup/0/ARGS.0
Binary file not shown.
Binary file removed iiTweak/backup/0/READLN.0
Binary file not shown.
Empty file removed iiTweak/backup/0/UNINSTALL.0
Empty file.
Binary file removed iiTweak/backup/1/ARGS.1
Binary file not shown.
Binary file removed iiTweak/backup/1/READLN.1
Binary file not shown.
Empty file removed iiTweak/backup/1/UNINSTALL.1
Empty file.
Binary file removed iiTweak/backup/1000/ARGS.1000
Binary file not shown.
Binary file removed iiTweak/backup/1000/READLN.1000
Binary file not shown.
Empty file removed iiTweak/backup/1000/UNINSTALL.1000
Empty file.
2 changes: 1 addition & 1 deletion iiTweak/iiTweak.tp2
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* ------------------------------------------------------------------------------------------------------------------------
// Name: iiTweak
// Author: igi
// Date: 24/09/06
// -----------------------------------------------------------------------------------------------------------------------*/
BACKUP ~iiTweak/backup~
AUTHOR ~igi~
VERSION ~7.1~
ASK_EVERY_COMPONENT
LANGUAGE ~English~ ~English~ ~iiTweak/English/setup.tra~

Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# iiTweak

iiTweak contains several tweaks and convenience alterations for the Infinity Engine series of games.

0 comments on commit c6c22cb

Please sign in to comment.