Skip to content

Commit

Permalink
Merge pull request #45 from feloy/fix-release-version-in-package-json
Browse files Browse the repository at this point in the history
chore: fix package.json version on release
  • Loading branch information
feloy authored Feb 16, 2024
2 parents 8055f1c + 6ad63df commit b5f5590
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ jobs:
run: |
git config --local user.name ${{ github.actor }}
# Add the new version in package.json file
#sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ steps.TAG_UTIL.outputs.extVersion }}\",#g" package.json
#git add package.json
# Add the new version in package.json file of the extension
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${{ steps.TAG_UTIL.outputs.extVersion }}\",#g" podman-desktop-extension/package.json
git add podman-desktop-extension/package.json
# commit the changes
#git commit -m "chore: 🥁 tagging ${{ steps.TAG_UTIL.outputs.githubTag }} 🥳"
git commit -m "chore: 🥁 tagging ${{ steps.TAG_UTIL.outputs.githubTag }} 🥳"
echo "Tagging with ${{ steps.TAG_UTIL.outputs.githubTag }}"
git tag ${{ steps.TAG_UTIL.outputs.githubTag }}
git push origin ${{ steps.TAG_UTIL.outputs.githubTag }}
Expand Down

0 comments on commit b5f5590

Please sign in to comment.