Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
uses: actions/checkout@v3
with:
ref: 'dev'
fetch-depth: 0
- name: Configure bot user
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
Expand All @@ -25,4 +26,16 @@ jobs:
- name: Push to beta branch
run: |
git commit -am "Weekly beta release" --allow-empty --author="github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
<<<<<<<
git push origin HEAD:beta --force
=======
gh release delete beta --yes
fi
# Create new beta draft release with generated notes
# Make sure the latest tag is correct, even if the current commit is already tagged
LATEST_TAG=$(git describe --tags --abbrev=0)
gh release create beta --title "Beta Release" --draft --generate-notes --notes-start-tag "$LATEST_TAG"
gh release view beta > temp_change.md
- name: Tweak changelogs
id: tweak-changelogs
>>>>>>>
Loading