Skip to content

Allow mixin-plugin-unfinal-ing of non-object fields #144

Allow mixin-plugin-unfinal-ing of non-object fields

Allow mixin-plugin-unfinal-ing of non-object fields #144

Workflow file for this run

{
"name": "Snapshot",
"concurrency": "ci-${{ github.ref }}",
"on": {
"push": {
"branches": [
"main"
]
},
"workflow_dispatch": {
}
},
"jobs": {
"build": {
"runs-on": "ubuntu-22.04",
"steps": [
{
"name": "Setup Java",
"run": "echo \"JAVA_HOME=$JAVA_HOME_21_X64\" >> \"$GITHUB_ENV\""
},
{
"name": "Checkout",
"uses": "actions/checkout@v4",
"with": {
"fetch-depth": "0",
"persist-credentials": "false"
}
},
{
"name": "Validate Gradle Wrapper",
"uses": "gradle/actions/wrapper-validation@v4"
},
{
"name": "Cache",
"uses": "actions/cache/restore@v4",
"with": {
"path": "**/.gradle/loom-cache\n**/.gradle/quilt-loom-cache",
"key": "${{ runner.os }}-gradle-${{ hashFiles('**/libs.versions.*', '**/*.gradle*', '**/gradle-wrapper.properties') }}",
"restore-keys": "${{ runner.os }}-gradle-"
}
},
{
"name": "Setup Gradle",
"uses": "gradle/actions/setup-gradle@v4",
"with": {
"cache-read-only": true,
"gradle-home-cache-cleanup": true
}
},
{
"name": "Publish",
"id": "publish",
"run": "./gradlew publish",
"env": {
"BUILD_CACHE_PASSWORD": "${{ secrets.BUILD_CACHE_PASSWORD }}",
"BUILD_CACHE_USER": "${{ secrets.BUILD_CACHE_USER }}",
"BUILD_CACHE_URL": "${{ secrets.BUILD_CACHE_URL }}",
"SNAPSHOT_MAVEN_PASSWORD": "${{ secrets.SNAPSHOT_MAVEN_PASSWORD }}",
"SNAPSHOT_MAVEN_USER": "github",
"SNAPSHOT_MAVEN_URL": "https://maven.lukebemish.dev/snapshots/"
}
}
]
}
}
}