diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7a5e3ba..247cd10 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,15 +97,12 @@ jobs: git commit -am "Update main branch for the ${{ steps.update-repo.outputs.release-version }} release" - name: Push Changes - uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839 - with: - ssh: true - atomic: true - branch: main - repository: ${{ github.repository }} + shell: bash + run: | + git push origin HEAD:main - name: Upload Release Details - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: release-details path: | @@ -137,7 +134,7 @@ jobs: git config --global commit.gpgsign false - name: Download Release Details - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: release-details @@ -232,9 +229,6 @@ jobs: git commit --allow-empty -am "Update README.md with ${VERSION} release sha256sum" - name: Push Changes - uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839 - with: - ssh: true - atomic: true - branch: main - repository: ${{ github.repository }} + shell: bash + run: | + git push origin HEAD:main