version bump to stop updates #34
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
name: Hook Autobuilder | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "4v4" ] | |
env: | |
BLEEDING: 1 | |
permissions: | |
contents: write | |
jobs: | |
build: | |
# for unknown reasons, ubuntu 24 messes up when running the generator. | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
run: | | |
git submodule update --init --recursive | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install make | |
sudo apt install g++-mingw-w64 | |
sudo dpkg --add-architecture i386 | |
sudo apt update | |
sudo apt install wine32 | |
sudo apt install zip | |
sudo apt install wine-binfmt | |
- name: make | |
run: make main-build release -j3 | |
- name: Delete tag and release | |
uses: dev-drprasad/[email protected] | |
with: | |
delete_release: true | |
tag_name: bleeding-edge | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload files | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: bleeding-edge | |
name: 2v2 Bleeding Edge | |
prerelease: true | |
fail_on_unmatched_files: true | |
draft: false | |
files: | | |
./cccaster/hook.dll | |
body: | | |
# Install Instructions | |
In your cccaster folder, please backup your existing hook.dll file, and replace it with this one. | |
If you want to play normal melty, switch them back please. | |
Want to play multiplayer? Use parsec. This mod doesnt have multiplayer. | |
Please bind FN1, to allow you to toggle which opponent you target. | |
I am going to explode. 💥 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |