Skip to content

Commit

Permalink
Merge pull request #2 from Gibberlings3/v7dev
Browse files Browse the repository at this point in the history
V7dev
  • Loading branch information
CamDawg authored Nov 29, 2021
2 parents 20914a5 + ee12323 commit 74f9b50
Show file tree
Hide file tree
Showing 56 changed files with 8,389 additions and 3,980 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.ini text eol=crlf
*.txt text eol=crlf
*.htm text eol=crlf
*.html text eol=crlf
*.gitignore text eol=crlf
*.gitattributes text eol=crlf
*.gif binary
*.ico binary
*.jpg binary
*.png binary
*.exe binary
35 changes: 35 additions & 0 deletions .github/workflows/InfinityAutoPackager.yaml
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
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
__macosx
backup/
$RECYCLE.BIN/
temp/
tmp/

*.bak
*.tmp
*.bak
*.lnk
Thumbs.db
ehthumbs.db

*.7z
*.rar
*.zip
*.tar.gz

.DS_Store
.AppleDouble
.LSOverride
.AppleDB
.AppleDesktop
.apdisk
Binary file added docs/iwdfixpack_arrays.ods
Binary file not shown.
Loading

0 comments on commit 74f9b50

Please sign in to comment.