mirror of
https://github.com/mnaoumov/obsidian-advanced-debug-mode.git
synced 2026-07-22 05:44:00 +00:00
chore: attest
This commit is contained in:
parent
b7c2fd6faa
commit
90e2e52c58
1 changed files with 24 additions and 0 deletions
24
.github/workflows/attest-release-assets.yml
vendored
Normal file
24
.github/workflows/attest-release-assets.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Attest Release Assets
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
attestations: write
|
||||
|
||||
jobs:
|
||||
attest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download release assets
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
run: gh release download "${{ github.event.release.tag_name }}" --repo "${{ github.repository }}" --dir assets
|
||||
|
||||
- name: Generate artifact attestation
|
||||
uses: actions/attest@v4
|
||||
with:
|
||||
subject-path: assets/*
|
||||
Loading…
Reference in a new issue