From 4b14195190ba33120fda931f5ef194eb3fe45803 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Thu, 18 Aug 2022 21:52:30 +0200 Subject: [PATCH] fix(store): install for current user only --- .github/workflows/microsoft_store.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/microsoft_store.yml b/.github/workflows/microsoft_store.yml index ab4d5117..3f6da1ad 100644 --- a/.github/workflows/microsoft_store.yml +++ b/.github/workflows/microsoft_store.yml @@ -32,21 +32,21 @@ jobs: "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-amd64.exe", "languages":["en"], "architectures":["X64"], - "installerParameters":"/VERYSILENT", + "installerParameters":"/VERYSILENT /CURRENTUSER", "isSilentInstall":false }, { "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-arm64.exe", "languages":["en"], "architectures":["Arm64"], - "installerParameters":"/VERYSILENT", + "installerParameters":"/VERYSILENT /CURRENTUSER", "isSilentInstall":false }, { "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-386.exe", "languages":["en"], "architectures":["X86"], - "installerParameters":"/VERYSILENT", + "installerParameters":"/VERYSILENT /CURRENTUSER", "isSilentInstall":false } ]