Skip to content

Commit

Permalink
fix(CI): Use complete task path
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudemirovsky committed May 26, 2024
1 parent d01f799 commit 6f8c235
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_single_extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
uses: actions/checkout@v4
with:
repository: ${{ env.REPO }}
fetch-depth: 0
ref: ${{ github.event.inputs.git-ref }}

- name: Set up JDK 21
Expand All @@ -49,8 +48,13 @@ jobs:
java-version: 21
distribution: zulu

- name: DEBUG
run: |
pwd
./gradlew projects -q
- name: Build APK
run: ./gradlew -p src ${{ env.EXTSLUG }}:assembleDebug
run: ./gradlew :src:${{ env.EXTSLUG }}:assembleDebug

- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6f8c235

Please sign in to comment.