Fix Kotlin property access syntax in Yoga Java test files (#1963) #316
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Android Snapshot | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| name: Publish Snapshot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup-android | |
| - name: Publish to Maven Local | |
| run: ./gradlew publishToMavenLocal | |
| env: | |
| ORG_GRADLE_PROJECT_USE_SNAPSHOT: true | |
| - name: Upload Build Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: 'snapshot-artifacts' | |
| path: '~/.m2/repository/' | |
| - name: Publish to the Snapshot Repository | |
| run: ./gradlew publishToSonatype | |
| env: | |
| ORG_GRADLE_PROJECT_SONATYPE_USERNAME: ${{ secrets.ORG_GRADLE_PROJECT_SONATYPE_USERNAME }} | |
| ORG_GRADLE_PROJECT_SONATYPE_PASSWORD: ${{ secrets.ORG_GRADLE_PROJECT_SONATYPE_PASSWORD }} | |
| ORG_GRADLE_PROJECT_USE_SNAPSHOT: true |