We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0599c63 commit 803ec6eCopy full SHA for 803ec6e
.github/workflows/update-dotnet-install-script.yml
@@ -35,8 +35,11 @@ jobs:
35
git add src/dotnet/scripts/vendor/dotnet-install.sh
36
git commit -m 'Automated dotnet-install script update' || export NO_UPDATES=true
37
38
- # Push
+ # Bump version and push
39
if [ "$NO_UPDATES" != "true" ] ; then
40
+ echo "$(jq --indent 4 '.version = (.version | split(".") | map(tonumber) | .[2] += 1 | join("."))' src/dotnet/devcontainer-feature.json)" > src/dotnet/devcontainer-feature.json
41
+ git add src/dotnet/devcontainer-feature.json
42
+ git commit -m 'Bump version'
43
git push origin "$branch"
44
gh api \
45
--method POST \
0 commit comments