fix builds #11
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
name: "Deploy Anima Addon" | |
on: push | |
jobs: | |
deploy-anima-addon: | |
name: Depoly Anima | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Copy addon files | |
run: | | |
mkdir deploy | |
cd deploy | |
git clone https://ceceppa:${{ secrets.TOKEN }}@github.com/ceceppa/anima-godot-4.git | |
git pull origin main | |
rm -rf * | |
cp -r ../addons . | |
cp ../LICENSE . | |
cp ../README.ADDON-REPO.md README.md | |
git add . | |
git commit -m "Update addon files" | |
git push -f origin main |