Fixed a bug in the release pipeline that created a conflict between the tag and the actual code

This commit is contained in:
2024-12-16 21:09:24 -07:00
parent e38e430c77
commit 057ff0fef1
+6 -6
View File
@@ -229,6 +229,12 @@ jobs:
echo "$changelog" > changelog.md echo "$changelog" > changelog.md
echo "changelog_body=$(cat changelog.md)" >> $GITHUB_ENV echo "changelog_body=$(cat changelog.md)" >> $GITHUB_ENV
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push origin --follow-tags
- name: Create a GitHub Release - name: Create a GitHub Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
env: env:
@@ -265,12 +271,6 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push origin --follow-tags
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: