diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9085202..f84378a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 }}