Skip to content

fix builds

fix builds #11

Workflow file for this run

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