From 637752b54e3dab086dd54d63c8e02961d0e78430 Mon Sep 17 00:00:00 2001 From: Manley Date: Wed, 27 Apr 2022 01:57:29 -0400 Subject: [PATCH] Update ReadMe.md --- Contributors.md | 2 +- Dockerfile | 4 ++-- LICENSE | 2 -- ReadMe.md | 14 +++++++------- action.yml | 14 +++++++------- 5 files changed, 17 insertions(+), 19 deletions(-) diff --git a/Contributors.md b/Contributors.md index fe0b3a0..42ea4a0 100644 --- a/Contributors.md +++ b/Contributors.md @@ -4,7 +4,7 @@ Name | Email | Twitter | -----|-------|---------| -[Joseph Manley](https://github.com/josephbmanley) | [joseph@cloudsumu.com](mailto:joseph@cloudsumu.com) | [@josephbmanley](https://twitter.com/josephbmanley) +[Layla Manley](https://github.com/yeslayla) | -- | [@yeslayla](https://twitter.com/_yeslayla) ## Contributors diff --git a/Dockerfile b/Dockerfile index 94ea8a7..9e730cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ LABEL "com.github.actions.description"="Build a Godot project for multiple platf LABEL "com.github.actions.icon"="loader" LABEL "com.github.actions.color"="blue" -LABEL repository="https://github.com/josephbmanley/build-godot-action" +LABEL repository="https://github.com/yeslayla/build-godot-action" LABEL homepage="https://cloudsumu.com/" -LABEL maintainer="Joseph Manley " +LABEL maintainer="Layla " USER root ADD entrypoint.sh /entrypoint.sh diff --git a/LICENSE b/LICENSE index 5ef0b4c..e662c78 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,3 @@ -Copyright 2020 Joseph Manley - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/ReadMe.md b/ReadMe.md index 70799b6..9a2b36b 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,4 +1,4 @@ -![Release Version](https://img.shields.io/github/v/release/josephbmanley/build-godot-action) ![Test Action](https://github.com/josephbmanley/build-godot-action/workflows/Test%20Action/badge.svg) +![Release Version](https://img.shields.io/github/v/release/yeslayla/build-godot-action) ![Test Action](https://github.com/yeslayla/build-godot-action/workflows/Test%20Action/badge.svg) ![Build Godot Project](logo.png) @@ -42,7 +42,7 @@ jobs: lfs: true - name: Build id: build - uses: josephbmanley/build-godot-action@v1.4.1 + uses: manleydev/build-godot-action@v1.4.1 with: name: example preset: ${{ matrix.platform }} @@ -82,7 +82,7 @@ Additionally if you are not using a matrix, you can set the export preset as the ```yaml - name: Build id: build - uses: josephbmanley/build-godot-action@v1.4.1 + uses: manleydev/build-godot-action@v1.4.1 with: name: example preset: win32 @@ -95,7 +95,7 @@ To change the export name, you can the `name` parameter to whatever you want you ```yaml - name: Build id: build - uses: josephbmanley/build-godot-action@v1.4.1 + uses: manleydev/build-godot-action@v1.4.1 with: name: test # This project will export with the name "test" ``` @@ -107,7 +107,7 @@ This example is set to build with debug mode enable. To disable debug, either se ```yaml - name: Build id: build - uses: josephbmanley/build-godot-action@v1.4.1 + uses: manleydev/build-godot-action@v1.4.1 with: name: example preset: ${{ matrix.platform }} @@ -121,7 +121,7 @@ If your project is located in a subdirectory, you can use the `projectDir` to ch ```yaml - name: Build id: build - uses: josephbmanley/build-godot-action@v1.4.1 + uses: manleydev/build-godot-action@v1.4.1 with: name: example preset: ${{ matrix.platform }} @@ -142,7 +142,7 @@ Example: ```yaml steps: -- uses: josephbmanley/build-godot-action@[VERSION] +- uses: manleydev/build-godot-action@[VERSION] with: name: godot-project preset: HTML5 diff --git a/action.yml b/action.yml index 51d3ed0..fef714d 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ name: "Build Godot" description: "Build a Godot project for multiple platforms" -author: josephbmanley +author: yeslayla inputs: name: description: 'Name of the exported binary' @@ -24,12 +24,12 @@ runs: using: docker image: Dockerfile args: - - ${{ inputs.name }} - - ${{ inputs.preset }} - - ${{ inputs.subdirectory }} - - ${{ inputs.package }} - - ${{ inputs.projectDir }} - - ${{ inputs.debugMode }} + - ${{ inputs.name }} + - ${{ inputs.preset }} + - ${{ inputs.subdirectory }} + - ${{ inputs.package }} + - ${{ inputs.projectDir }} + - ${{ inputs.debugMode }} branding: icon: loader color: blue