We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b8c1b commit 06623e6Copy full SHA for 06623e6
1 file changed
.github/workflows/cd.yml
@@ -5,6 +5,11 @@ on:
5
tags:
6
- '[0-9]+.[0-9]+.[0-9]+'
7
8
+permissions:
9
+ contents: write # for release creation and asset upload
10
+ id-token: write # for artifact attestations
11
+ attestations: write # for artifact attestations
12
+
13
jobs:
14
publish:
15
name: Publishing for ${{ matrix.job.os }}
@@ -87,6 +92,13 @@ jobs:
87
92
env:
88
93
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
94
95
+ - name: Generating artifact attestations
96
+ uses: actions/attest@v4
97
+ with:
98
+ subject-path: |
99
+ delta-*-${{ matrix.job.target }}.*
100
+ git-delta*.deb
101
90
102
publish-to-cargo:
91
103
name: Publishing to Cargo
104
runs-on: ubuntu-latest
0 commit comments