Skip to content

Commit 29fee0c

Browse files
committed
set build dir for release
1 parent eeb223f commit 29fee0c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Compile aapt2
4343
env:
4444
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
45-
PROTOC_PATH: "/${{ github.workspace }}/src/protobuf/build/protoc"
45+
PROTOC_PATH: "${{ github.workspace }}/src/protobuf/build/protoc"
4646
run: bash ./build.sh ${{ matrix.target_arch }}
4747

4848
- name: Upload artifacts
@@ -70,14 +70,14 @@ jobs:
7070
- name: Download all built artifacts
7171
uses: actions/download-artifact@v4
7272
with:
73-
path: ./artifacts
73+
path: ${{ github.workspace }}/build/bin/
7474
merge-multiple: true
7575

7676
- name: Generate attestations
7777
if: ${{ steps.release.outputs.release_created }}
7878
uses: actions/attest-build-provenance@v2
7979
with:
80-
subject-path: ./artifacts/aapt2-*
80+
subject-path: ${{ github.workspace }}/build/bin/aapt2-*
8181

8282
- name: Setup Node.js
8383
uses: actions/setup-node@v4

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
successComment: false,
3737
assets: [
3838
{
39-
"path": "artifacts/aapt2-*"
39+
"path": "build/bin/aapt-*"
4040
}
4141
]
4242
}

0 commit comments

Comments
 (0)