mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
25 lines
535 B
YAML
25 lines
535 B
YAML
name: Build spine-libgdx
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'spine-libgdx/**'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up JDK 1.7
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.7
|
|
- name: Build spine-libgdx
|
|
working-directory: spine-libgdx/spine-libgdx
|
|
env:
|
|
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
|
|
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
|
run: mvn -s ../../.github/workflows/settings.xml clean deploy
|