File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,15 +97,12 @@ jobs:
9797 git commit -am "Update main branch for the ${{ steps.update-repo.outputs.release-version }} release"
9898
9999 - name : Push Changes
100- uses : ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839
101- with :
102- ssh : true
103- atomic : true
104- branch : main
105- repository : ${{ github.repository }}
100+ shell : bash
101+ run : |
102+ git push origin HEAD:main
106103
107104 - name : Upload Release Details
108- uses : actions/upload-artifact@v4
105+ uses : actions/upload-artifact@v7
109106 with :
110107 name : release-details
111108 path : |
@@ -137,7 +134,7 @@ jobs:
137134 git config --global commit.gpgsign false
138135
139136 - name : Download Release Details
140- uses : actions/download-artifact@v4
137+ uses : actions/download-artifact@v7
141138 with :
142139 name : release-details
143140
@@ -232,9 +229,6 @@ jobs:
232229 git commit --allow-empty -am "Update README.md with ${VERSION} release sha256sum"
233230
234231 - name : Push Changes
235- uses : ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839
236- with :
237- ssh : true
238- atomic : true
239- branch : main
240- repository : ${{ github.repository }}
232+ shell : bash
233+ run : |
234+ git push origin HEAD:main
You can’t perform that action at this time.
0 commit comments