Skip to content

Commit

Permalink
[SkipCI][CI] Attempt to properly pass optional variable from CI to gr…
Browse files Browse the repository at this point in the history
…adle
  • Loading branch information
ViliusSutkus89 committed Nov 2, 2023
1 parent 75ab116 commit 07fa763
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v4

- run: ./gradlew ${{ inputs.package }}:publishToMavenLocal \
-PpackageVersion=${{ inputs.version }} \
-PpackageVersion='${{ inputs.version }}' \
-PndkPath=${{ env.ANDROID_SDK_ROOT }}/ndk/${{ matrix.ndk }} \
-PlibraryType=${{ matrix.libraryType }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- run: ./gradlew \
${{ inputs.PACKAGE }}:publishToMavenLocal \
-PpackageVersion=${{ inputs.VERSION }} \
-PpackageVersion='${{ inputs.VERSION }}' \
-PndkPath=${{ env.ANDROID_SDK_ROOT }}/ndk/${{ matrix.ndk }} \
-PlibraryType=${{ matrix.libraryType }}

Expand All @@ -78,7 +78,7 @@ jobs:
- run: ./gradlew -PrepoDescription=${{ env.REPO_DESCRIPTION }} \
findSonatypeStagingRepository -x initializeSonatypeStagingRepository \
${{ inputs.PACKAGE }}:publishToSonatype \
-PpackageVersion=${{ inputs.VERSION }} \
-PpackageVersion='${{ inputs.VERSION }}' \
-PndkPath=${{ env.ANDROID_SDK_ROOT }}/ndk/${{ matrix.ndk }} \
-PlibraryType=${{ matrix.libraryType }}
env:
Expand Down

0 comments on commit 07fa763

Please sign in to comment.