From 2f9f5c296119091b3d98c662019ff0c10a0fa974 Mon Sep 17 00:00:00 2001 From: Simon Dalvai Date: Sun, 5 Mar 2023 11:46:33 +0100 Subject: [PATCH] remove package-name parameter --- README.md | 3 +-- action.yml | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index be56aa1..760e79d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,6 @@ If you are facing problems with the action or this README feels not complete, pu | key | required | default | description | | ----|----------|---------|-------------| | working-directory | false | . | Path to project.godot file | -| package-name | true | | Android package name | | godot-version | false | 3.5.1 | Check versions [here](https://downloads.tuxfamily.org/godotengine/) | ## Working examples @@ -28,7 +27,7 @@ https://github.com/dulvui/pocket-broomball/blob/main/.github/workflows/upload-an https://github.com/dulvui/ball2box/blob/main/.github/workflows/upload-android.yml ## Version 2 breaking changes -The repository and action ahs been renamed from godot-android-upload to simply godot-android-export to simplify the action and to remove third party actions dependencies. +The repository and action has been renamed from godot-android-upload to simply godot-android-export to simplify the action and to remove third party actions dependencies. Now this actions follows the Unix philosophy of simply doing one thing well. You can then upload the aab/apk export of your game where ever you want. diff --git a/action.yml b/action.yml index 1143b8d..9a4cb71 100644 --- a/action.yml +++ b/action.yml @@ -15,9 +15,6 @@ inputs: description: 'Godot Engine version' required: false default: '3.5.1' - package-name: - description: 'Android package name' - required: true runs: using: "composite"