We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8285e73 commit 1a089aaCopy full SHA for 1a089aa
.github/workflows/build.yml
@@ -16,6 +16,9 @@ jobs:
16
build:
17
name: build
18
runs-on: ubuntu-latest
19
+ permissions:
20
+ id-token: write
21
+ attestations: write
22
strategy:
23
matrix:
24
target_arch: [x86_64, x86, arm64-v8a, armeabi-v7a]
@@ -35,8 +38,14 @@ jobs:
35
38
env:
36
39
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64
37
40
41
+ - name: Attest build provenance
42
+ uses: actions/attest-build-provenance@v1
43
+ with:
44
+ subject-name: dist-${{ matrix.target_arch }}
45
+ subject-path: dist
46
+
47
- name: Upload artifacts
48
uses: actions/upload-artifact@v3
49
with:
50
name: dist-${{ matrix.target_arch }}
- path: dist
51
+ path: dist
0 commit comments