mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
21 lines
406 B
YAML
21 lines
406 B
YAML
name: Build spine-ts
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'spine-ts/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup TypeScript
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '16.6.2'
|
|
- name: Build spine-ts
|
|
working-directory: spine-ts
|
|
env:
|
|
TS_UPDATE_URL: ${{secrets.TS_UPDATE_URL}}
|
|
run: ./build.sh |