Skip to content

Commit b5f5590

Browse files
authored
Merge pull request #45 from feloy/fix-release-version-in-package-json
chore: fix package.json version on release
2 parents 8055f1c + 6ad63df commit b5f5590

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
run: |
5656
git config --local user.name ${{ github.actor }}
5757
58-
# Add the new version in package.json file
59-
#sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ steps.TAG_UTIL.outputs.extVersion }}\",#g" package.json
60-
#git add package.json
58+
# Add the new version in package.json file of the extension
59+
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ steps.TAG_UTIL.outputs.extVersion }}\",#g" podman-desktop-extension/package.json
60+
git add podman-desktop-extension/package.json
6161
6262
# commit the changes
63-
#git commit -m "chore: 🥁 tagging ${{ steps.TAG_UTIL.outputs.githubTag }} 🥳"
63+
git commit -m "chore: 🥁 tagging ${{ steps.TAG_UTIL.outputs.githubTag }} 🥳"
6464
echo "Tagging with ${{ steps.TAG_UTIL.outputs.githubTag }}"
6565
git tag ${{ steps.TAG_UTIL.outputs.githubTag }}
6666
git push origin ${{ steps.TAG_UTIL.outputs.githubTag }}

0 commit comments

Comments
 (0)