mirror of
https://github.com/yeslayla/build-godot-action.git
synced 2025-04-07 17:14:53 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f362e14dc5 | ||
|
7773d38d12 | ||
7727f04a91 |
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Name | Email | Twitter |
|
Name | Email | Twitter |
|
||||||
-----|-------|---------|
|
-----|-------|---------|
|
||||||
[Layla Manley](https://github.com/yeslayla) | -- | [@yeslayla](https://twitter.com/_yeslayla)
|
[Joseph Manley](https://github.com/josephbmanley) | [joseph@cloudsumu.com](mailto:joseph@cloudsumu.com) | [@josephbmanley](https://twitter.com/josephbmanley)
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
|
@ -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/yeslayla/build-godot-action"
|
LABEL repository="https://github.com/josephbmanley/build-godot-action"
|
||||||
LABEL homepage="https://cloudsumu.com/"
|
LABEL homepage="https://cloudsumu.com/"
|
||||||
LABEL maintainer="Layla <layla@cloudsumu.com>"
|
LABEL maintainer="Joseph Manley <joseph@cloudsumu.com>"
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
ADD entrypoint.sh /entrypoint.sh
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,3 +1,5 @@
|
|||||||
|
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.
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
This project is not currently being maintained. If you want to build Godot projects with GitHub Actions, I'd recommend taking a look at https://github.com/marketplace/actions/godot-ci
|
 
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
 
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
14
action.yml
14
action.yml
@ -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: yeslayla
|
author: josephbmanley
|
||||||
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
|
||||||
|
@ -3,7 +3,7 @@ set -e
|
|||||||
|
|
||||||
# Move godot templates already installed from the docker image to home
|
# Move godot templates already installed from the docker image to home
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates
|
mkdir -v -p ~/.local/share/godot/export_templates
|
||||||
cp -a /root/.local/share/godot/export_templates/. ~/.local/share/godot/export_templates/
|
cp -a /root/.local/share/godot/templates/. ~/.local/share/godot/export_templates/
|
||||||
|
|
||||||
|
|
||||||
if [ "$3" != "" ]
|
if [ "$3" != "" ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user