Skip to content

Commit 36ecdce

Browse files
committed
fix(ci): update release workflow dependencies installation order [need ci]
- Install jq using apt-get instead of npm - Install conventional-changelog-cli globally via npm after jq installation - Adjust script commands for improved package management in release.yml workflow file
1 parent 0ad072c commit 36ecdce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ jobs:
7272
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USERNAME }}
7373
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
7474
run: |
75-
npm install -g conventional-changelog-cli jq
75+
apt-get install -y jq
76+
npm install -g conventional-changelog-cli
7677
echo "${DOCKERHUB_TOKEN}" | docker login -u "${DOCKERHUB_USER}" --password-stdin
7778
7879
BUMP=${{ steps.bump_type.outputs.bump }}

0 commit comments

Comments
 (0)