Update ReadMe.md

This commit is contained in:
Layla 2022-04-27 01:57:29 -04:00 committed by Layla
parent a35bb31c9a
commit 637752b54e
5 changed files with 17 additions and 19 deletions

View File

@ -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

View File

@ -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 <joseph@cloudsumu.com>"
LABEL maintainer="Layla <layla@cloudsumu.com>"
USER root
ADD entrypoint.sh /entrypoint.sh

View File

@ -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.

View File

@ -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

View File

@ -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