Skip to content

Commit 3aefd04

Browse files
committed
fix(ci): use sudo for apt-get install in release workflow [need ci]
- Added sudo prefix to apt-get install command in release.yml - Ensured jq installation runs with proper permissions during CI job - Prevented permission issues in GitHub Actions release workflow execution
1 parent 36ecdce commit 3aefd04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USERNAME }}
7373
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
7474
run: |
75-
apt-get install -y jq
75+
sudo apt-get install -y jq
7676
npm install -g conventional-changelog-cli
7777
echo "${DOCKERHUB_TOKEN}" | docker login -u "${DOCKERHUB_USER}" --password-stdin
7878

0 commit comments

Comments
 (0)