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 | 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 ## 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.icon"="loader"
LABEL "com.github.actions.color"="blue" 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 homepage="https://cloudsumu.com/"
LABEL maintainer="Joseph Manley <joseph@cloudsumu.com>" LABEL maintainer="Layla <layla@cloudsumu.com>"
USER root USER root
ADD entrypoint.sh /entrypoint.sh 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: 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. 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) ![Build Godot Project](logo.png)
@ -42,7 +42,7 @@ jobs:
lfs: true lfs: true
- name: Build - name: Build
id: build id: build
uses: josephbmanley/build-godot-action@v1.4.1 uses: manleydev/build-godot-action@v1.4.1
with: with:
name: example name: example
preset: ${{ matrix.platform }} preset: ${{ matrix.platform }}
@ -82,7 +82,7 @@ Additionally if you are not using a matrix, you can set the export preset as the
```yaml ```yaml
- name: Build - name: Build
id: build id: build
uses: josephbmanley/build-godot-action@v1.4.1 uses: manleydev/build-godot-action@v1.4.1
with: with:
name: example name: example
preset: win32 preset: win32
@ -95,7 +95,7 @@ To change the export name, you can the `name` parameter to whatever you want you
```yaml ```yaml
- name: Build - name: Build
id: build id: build
uses: josephbmanley/build-godot-action@v1.4.1 uses: manleydev/build-godot-action@v1.4.1
with: with:
name: test # This project will export with the name "test" 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 ```yaml
- name: Build - name: Build
id: build id: build
uses: josephbmanley/build-godot-action@v1.4.1 uses: manleydev/build-godot-action@v1.4.1
with: with:
name: example name: example
preset: ${{ matrix.platform }} preset: ${{ matrix.platform }}
@ -121,7 +121,7 @@ If your project is located in a subdirectory, you can use the `projectDir` to ch
```yaml ```yaml
- name: Build - name: Build
id: build id: build
uses: josephbmanley/build-godot-action@v1.4.1 uses: manleydev/build-godot-action@v1.4.1
with: with:
name: example name: example
preset: ${{ matrix.platform }} preset: ${{ matrix.platform }}
@ -142,7 +142,7 @@ Example:
```yaml ```yaml
steps: steps:
- uses: josephbmanley/build-godot-action@[VERSION] - uses: manleydev/build-godot-action@[VERSION]
with: with:
name: godot-project name: godot-project
preset: HTML5 preset: HTML5

View File

@ -1,6 +1,6 @@
name: "Build Godot" name: "Build Godot"
description: "Build a Godot project for multiple platforms" description: "Build a Godot project for multiple platforms"
author: josephbmanley author: yeslayla
inputs: inputs:
name: name:
description: 'Name of the exported binary' description: 'Name of the exported binary'
@ -24,12 +24,12 @@ runs:
using: docker using: docker
image: Dockerfile image: Dockerfile
args: args:
- ${{ inputs.name }} - ${{ inputs.name }}
- ${{ inputs.preset }} - ${{ inputs.preset }}
- ${{ inputs.subdirectory }} - ${{ inputs.subdirectory }}
- ${{ inputs.package }} - ${{ inputs.package }}
- ${{ inputs.projectDir }} - ${{ inputs.projectDir }}
- ${{ inputs.debugMode }} - ${{ inputs.debugMode }}
branding: branding:
icon: loader icon: loader
color: blue color: blue