refactor: updating animation and armature handling #56
This file contains hidden or 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: Snapshot Deploy | |
| on: | |
| push: | |
| branches: ["dev"] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Install Zip utility | |
| run: sudo apt install zip -y | |
| - name: Make archive | |
| run: zip -r io_soulworker io_soulworker | |
| - name: Deploy | |
| uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| title: "Development Snapshot" | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| prerelease: true | |
| files: io_soulworker.zip | |
| automatic_release_tag: "latest" |