mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
23 lines
495 B
YAML
23 lines
495 B
YAML
name: Build spine-construct3-temp
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "spine-ts/spine-construct3/**"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup TypeScript
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "16"
|
|
- name: Build spine-construct3
|
|
working-directory: spine-ts
|
|
env:
|
|
C3_UPDATE_URL: ${{secrets.C3_UPDATE_URL}}
|
|
run: ./spine-construct3/build.sh
|