-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "Deploy Anima Addon" | ||
on: push | ||
|
||
jobs: | ||
deploy-addon-only: | ||
name: Depoly Anima | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Copy addon files | ||
run: | | ||
mkdir deploy | ||
cd deploy | ||
cp -r ../addons . | ||
cp ../LICENSE . | ||
cp ../README.ADDON-REPO.md README.md | ||
git init | ||
git branch -M main | ||
git remote add origin https://github.com/ceceppa/anima-godot-4.git | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "<senesealessandro@gmail.com>" | ||
git add . | ||
git commit -m "Update addon files" | ||
git remote set-url --push origin https://ceceppa:${{ secrets.TOKEN }}@github.com/ceceppa/anima-godot-4.git | ||
git push -f origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Anima pluging for Godot 4 | ||
|
||
This is the ready-to-be-installed [Anima](https://github.com/ceceppa/anima) addon for Godot4. | ||
|
||
## NOTE | ||
|
||
**The plugin is still in development and not all the feature works fine on Godot4.** | ||
|
||
This repository contains only the **addon** code without the demo and documentation and has been created to allow users to install the addon via the AssetLibrary. | ||
|
||
The development happens on the [godot-4](https://github.com/ceceppa/anima/tree/godot-4) branch of the main [anima repository](https://github.com/ceceppa/anima/). So, any issue or pull request needs to be open there. | ||
|
||
## Documentation | ||
|
||
WIP documentation is available [here](https://anima.ceceppa.me/docs/) |