Skip to content

Allow multiple widgets for the same HTMLElement #387

Allow multiple widgets for the same HTMLElement

Allow multiple widgets for the same HTMLElement #387

Workflow file for this run

name: Build spine-libgdx
on:
push:
paths:
- 'spine-libgdx/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build spine-libgdx
working-directory: spine-libgdx
run: ./gradlew publishReleasePublicationToSonaType -PossrhUsername=${{ secrets.SONATYPE_USER }} -PossrhPassword=${{ secrets.SONATYPE_PASSWORD }}