From f825b0e31de366ea78bb642d6f7faa1676e75a38 Mon Sep 17 00:00:00 2001 From: Stas Dm Date: Sun, 29 Dec 2024 15:11:46 +0100 Subject: [PATCH] fix: sudo --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c1225cc..79f1c4f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: TARGET_VERSION: ${{needs.version.outputs.versionOut}} SEM_VERSION: ${{needs.version.outputs.versionSemVerOut}} steps: - - run: apt-get update && apt-get install -y jq + - run: sudo apt-get update && sudo apt-get install -y jq - uses: actions/checkout@v4 - name: Set version in manifest run: jq --arg ver "$TARGET_VERSION" '.Version = $ver' ./resources/manifest.json > temp.json && mv temp.json ./resources/manifest.json