Skip to content

Commit

Permalink
Add makelove config + GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
qixils committed Oct 11, 2021
1 parent 5a2f42d commit 47a7d2c
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 5 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Compile
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
path: main
submodules: true
name: Checkout Repository
- name: Update Packages
run: sudo apt-get update
- name: Install Dependencies
run: sudo apt-get install --assume-yes wine-stable wine64 python3-pip
- name: Install makelove
run:
pip3 install git+https://github.com/pfirsich/makelove/
- name: Build
run: cd main && python3 -m makelove
- name: Prepare Artifact Names
run: |
echo "ARTIFACT_NAME_LOVE=$(ls main/makelove-build/love | head -n1)" >> $GITHUB_ENV
echo "ARTIFACT_NAME_APPIMAGE=$(ls main/makelove-build/appimage | head -n1)" >> $GITHUB_ENV
echo "ARTIFACT_NAME_WIN64=$(ls main/makelove-build/win64 | head -n1)" >> $GITHUB_ENV
echo "ARTIFACT_NAME_WIN32=$(ls main/makelove-build/win32 | head -n1)" >> $GITHUB_ENV
echo "ARTIFACT_NAME_MACOS=$(ls main/makelove-build/macos | head -n1)" >> $GITHUB_ENV
- name: Artifact (LÖVE)
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME_LOVE }}
path: main/makelove-build/love/${{ env.ARTIFACT_NAME_LOVE }}
- name: Artifact (AppImage)
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME_APPIMAGE }}
path: main/makelove-build/appimage/${{ env.ARTIFACT_NAME_APPIMAGE }}
- name: Artifact (Win64)
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME_WIN64 }}
path: main/makelove-build/win64/${{ env.ARTIFACT_NAME_WIN64 }}
- name: Artifact (Win32)
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME_WIN32 }}
path: main/makelove-build/win32/${{ env.ARTIFACT_NAME_WIN32 }}
- name: Artifact (MacOS)
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME_MACOS }}
path: main/makelove-build/macos/${{ env.ARTIFACT_NAME_MACOS }}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
README.md
makelove-build/
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ Avoid major additions that will potentially cause bugs or complicate the game/co
I appreciate the help, but the goal is to continue the mod while I am busy. Major changes will only increase my workload and make the mod even buggier.

## 📥 Downloads
[**DOWNLOAD PAGE:**] https://forum.stabyourself.net/viewtopic.php?f=13&t=3636
[**Downloads are available here.**](https://forum.stabyourself.net/viewtopic.php?f=13&t=3636)

Development builds are available [here](https://github.com/alesan99/mari0_ae/actions).

## 💡 About
**Alesan99's Entities** adds many entities to [Mari0](https://stabyourself.net/mari0)! From Enemies to power ups you'll never run out of entities to make levels now!
Expand Down Expand Up @@ -236,13 +238,14 @@ Special thanks to:
- [**Galas**](http://www.spriters-resource.com/custom_edited/mario/sheet/17965) for some power up sprites
- **Bobthelawyer** for mario's hammer physics code
- **KGK64** for Dry beetle sprites
- **WillWare** for animated quad cache code from Mari0 SE Community Edtion
- **Skysometric** for animated quad cache code from Mari0 SE Community Edtion
- **Oxiriar** and Toonn from the Mari0 Gang Discord for smb3 item sprites
- **NH1507** for toad and toadette character sprites
- **HansAgain** for new portal sprites, new mario sprites, and pneumatic tubes
- **Subpixel** for bowser3, rotodiscs, ninji, and splunkin sprites
- **Critfish** for overgrown portal sprites
- **MadNyle** for propeller sound effect and mega mushroom
- **qixils** for the automatic GitHub workflows
- **All you guys** for reporting bugs and making maps

- And thanks to [**NNB**](https://github.com/NNBnh) for this Github README page
- And thanks to [**NNB**](https://github.com/NNBnh) for this GitHub README page
2 changes: 1 addition & 1 deletion conf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ function love.conf(t)
t.version = "0.10.0"
t.window = false
t.externalstorage = true
end
end
10 changes: 10 additions & 0 deletions makelove.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name = "Alesan99's entities"
default_targets = ["win32", "win64", "appimage", "macos"]
build_directory = "makelove-build"
icon_file = "graphics/icon.png"
love_version = "0.10.2"

love_files = [
"::git-ls-tree::",
"-*/.*",
]

0 comments on commit 47a7d2c

Please sign in to comment.