Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ari-party committed Jun 21, 2024
1 parent ca1f369 commit b1a5bdd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_overlay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ jobs:
prerelease: false
args: ${{ matrix.args }}

- name: Convert artifact paths
id: artifact_paths
shell: bash
run: |
json=${{ steps.tauri_build.outputs.artifactPaths }}
list=$(echo $json | jq -r '. | join(", ")')
echo "list=$list" >> $GITHUB_OUTPUT
- uses: actions/attest-build-provenance@v1
with:
subject-path: ${{ steps.tauri_build.outputs.artifactPaths }}
subject-path: ${{ steps.artifact_paths.outputs.list }}

0 comments on commit b1a5bdd

Please sign in to comment.