diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3e51a4..3a3d42e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,8 +76,7 @@ jobs: id: attest uses: actions/attest-build-provenance@v2 with: - subject-name: "Secretive.zip" - subject-digest: sha256:${{ steps.upload.outputs.artifact-digest }} + subject-path: "Secretive.zip" - name: Create Release run: | sed -i.tmp "s/RUN_ID/$RUN_ID/g" .github/templates/release.md diff --git a/Sources/Secretive/Views/Modifiers/ToolbarButtonStyle.swift b/Sources/Secretive/Views/Modifiers/ToolbarButtonStyle.swift index 99ada75..22627d7 100644 --- a/Sources/Secretive/Views/Modifiers/ToolbarButtonStyle.swift +++ b/Sources/Secretive/Views/Modifiers/ToolbarButtonStyle.swift @@ -68,6 +68,9 @@ struct ToolbarButtonStyle: PrimitiveButtonStyle { .padding(.vertical, 10) .padding(.horizontal, 12) .glassEffect(.regular.interactive().tint(tint)) + .onTapGesture { + configuration.trigger() + } } else { BorderedButtonStyle().makeBody(configuration: configuration) .padding(EdgeInsets(top: 6, leading: 8, bottom: 6, trailing: 8))