-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Graicc/master
Utilla 1.6.5
- Loading branch information
Showing
7 changed files
with
103 additions
and
90 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,24 @@ | ||
# Composite action for building mod | ||
|
||
name: Build | ||
description: Builds mod | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Get working directory | ||
id: wd | ||
uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/working-dir@main | ||
|
||
- uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/setup@main | ||
with: | ||
working-dir: ${{ steps.wd.outputs.dir }} | ||
|
||
- uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/deps/legoandmars/Utilla@main | ||
with: | ||
output-dir: ${{ steps.wd.outputs.dir }}\Libs | ||
|
||
- uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/build@main | ||
with: | ||
working-dir: ${{ steps.wd.outputs.dir }} | ||
|
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,8 @@ | ||
<!-- DISC-ONLY # {HUMAN_NAME} {VERSION} --> | ||
Utilla, a Gorilla Tag library. | ||
|
||
Changes: | ||
- | ||
|
||
**Install using [Monke Mod Manager](https://github.com/DeadlyKitten/MonkeModManager/releases/latest)** | ||
<!-- DISC-ONLY *Or download here: <{REPO}/releases/latest>* --> |
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# Creates a build every commit | ||
|
||
name: Auto Build | ||
on: | ||
push: | ||
branches: [master,main] | ||
paths-ignore: | ||
- '**.yml' | ||
- '!.github/workflows/build.yml' | ||
- '**.md' | ||
- '.gitignore' | ||
pull_request: | ||
branches: [master,main] | ||
|
||
jobs: | ||
auto-build: | ||
name: Auto Build | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build mod | ||
uses: ./.github/actions/build | ||
|
||
- name: Upload mod | ||
uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/upload@main | ||
with: | ||
webhook-url: ${{ secrets.WEBHOOK_URL }} |
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,17 @@ | ||
# Creates a release post when a release is made | ||
|
||
name: Publish Release | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish-release: | ||
name: Publish Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: sleep 2h | ||
- name: Publish mod | ||
uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/publish@main | ||
with: | ||
webhook-url: ${{ secrets.PUBLISH_WEBHOOK_URL }} |
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,25 @@ | ||
# Creates a release from a template | ||
|
||
name: Make Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
required: true | ||
|
||
jobs: | ||
release: | ||
name: Make Release | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build mod | ||
uses: ./.github/actions/build | ||
|
||
- name: Make Release | ||
uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/release@main | ||
with: | ||
tag: ${{ inputs.tag }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
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