Skip to content

Update all dependencies #998

Update all dependencies

Update all dependencies #998

name: WearTilesKotlin
on:
push:
branches:
- main
paths:
- 'WearTilesKotlin/**'
- '.github/workflows/WearTilesKotlin.yml'
pull_request:
paths:
- 'WearTilesKotlin/**'
- '.github/workflows/WearTilesKotlin.yml'
env:
SAMPLE_PATH: WearTilesKotlin
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
build-root-directory: ${{ env.SAMPLE_PATH }}
- name: Build project
working-directory: ${{ env.SAMPLE_PATH }}
uses: gradle/gradle-build-action@v3

Check failure on line 40 in .github/workflows/WearTilesKotlin.yml

View workflow run for this annotation

GitHub Actions / WearTilesKotlin

Invalid workflow file

The workflow is not valid. .github/workflows/WearTilesKotlin.yml (Line: 40, Col: 9): Unexpected value 'uses' .github/workflows/WearTilesKotlin.yml (Line: 41, Col: 9): Unexpected value 'with'
with:
arguments: check --stacktrace
build-root-directory: ${{ env.SAMPLE_PATH }}
- name: Upload build outputs (APKs)
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: ${{ env.SAMPLE_PATH }}/app/build/outputs
- name: Upload build reports
if: always()
uses: actions/upload-artifact@v4
with:
name: build-reports
path: ${{ env.SAMPLE_PATH }}/app/build/reports