Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

fix: spines of different scale returning the same cached spine (#37) #22

fix: spines of different scale returning the same cached spine (#37)

fix: spines of different scale returning the same cached spine (#37) #22

Workflow file for this run

name: Deploy Examples
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup Project
uses: ./.github/actions/setup
- name: Build Project
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/pixijs/spine-v8.git
npm run build
npm run docs
npm run upload -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}