Fix: Change Secondary Button Color #40
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: Build and Verify | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build-verify-kmp-starter-project: | |
| runs-on: ubuntu-latest | |
| env: | |
| TEST_VERSION: "0.0.1-SNAPSHOT" | |
| steps: | |
| - name: Checkout PR Code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Regenerate templates | |
| run: | | |
| chmod +x lumo-ui/scripts/generate_templates.sh | |
| lumo-ui/scripts/generate_templates.sh | |
| - name: Publish test version to local maven | |
| run: | | |
| GRADLE_FILE="lumo-ui/plugin/build.gradle.kts" | |
| CURRENT_VERSION=$(grep -oE 'version\s*=\s*"([0-9]+\.[0-9]+\.[0-9]+)"' "$GRADLE_FILE" | awk -F'"' '{print $2}') | |
| ESCAPED_CURRENT_VERSION=$(echo "$CURRENT_VERSION" | sed 's/\./\\./g') | |
| sed -i "s/version\s*=\s*\"$ESCAPED_CURRENT_VERSION\"/version = \"$TEST_VERSION\"/" "$GRADLE_FILE" | |
| echo "Updated version in $GRADLE_FILE from $CURRENT_VERSION to $TEST_VERSION" | |
| ./gradlew plugin:publishToMavenLocal | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USER_NAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_IN_MEMORY_KEY }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_IN_MEMORY_KEY_ID }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_IN_MEMORY_KEY_PASSWORD }} | |
| - name: Download and Build KMP Starter Project | |
| run: | | |
| chmod +x .github/scripts/download-build-kmp-starter-project.sh | |
| .github/scripts/download-build-kmp-starter-project.sh "$TEST_VERSION" | |
| build-verify-multiplatform: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR Code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Regenerate templates | |
| run: | | |
| chmod +x lumo-ui/scripts/generate_templates.sh | |
| lumo-ui/scripts/generate_templates.sh | |
| - name: Build And Verify - Multiplatform Sample | |
| run: | | |
| chmod +x .github/scripts/build-verify-multiplatform.sh | |
| .github/scripts/build-verify-multiplatform.sh | |
| build-verify-android: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR Code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Regenerate templates | |
| run: | | |
| chmod +x lumo-ui/scripts/generate_templates.sh | |
| lumo-ui/scripts/generate_templates.sh | |
| - name: Build And Verify - Android Sample | |
| run: | | |
| chmod +x .github/scripts/build-verify-android.sh | |
| .github/scripts/build-verify-android.sh |