-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Release Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout des Codes | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Git konfigurieren | ||
- name: Configure Git | ||
run: | | ||
git config --global user.email "ci@github-actions.com" | ||
git config --global user.name "GitHub Actions CI" | ||
# Versionsnummer und Release Notes aus changelog.md extrahieren | ||
- name: Extract Version and Release Notes | ||
id: changelog | ||
run: | | ||
# Datei prüfen | ||
if [ ! -f changelog.md ]; then | ||
echo "ERROR: changelog.md not found!" >&2 | ||
exit 1 | ||
fi | ||
# Branch prüfen | ||
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | ||
# Reguläres Release (erstes "## Release") | ||
VERSION=$(grep -m 1 '^## Release ' changelog.md | awk '{print $3}') | ||
NOTES=$(awk '/^## Release / {if (NR > 1) exit; next} {print}' changelog.md) | ||
elif [[ "${{ github.ref }}" == "refs/heads/dev" ]]; then | ||
# Beta-Release (erstes "## Beta Release") | ||
VERSION=$(grep -m 1 '^## Beta Release ' changelog.md | awk '{print $4}') | ||
NOTES=$(awk '/^## Beta Release / {if (NR > 1) exit; next} {print}' changelog.md) | ||
else | ||
echo "ERROR: Unsupported branch ${{ github.ref }}" >&2 | ||
exit 1 | ||
fi | ||
if [ -z "$VERSION" ]; then | ||
echo "ERROR: Could not extract version from changelog.md" >&2 | ||
exit 1 | ||
fi | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
echo "NOTES<<EOF" >> $GITHUB_ENV | ||
echo "$NOTES" >> $GITHUB_ENV | ||
echo "EOF" >> $GITHUB_ENV | ||
# Überprüfen, ob der Tag existiert | ||
- name: Check if Tag Already Exists | ||
run: | | ||
if git rev-parse "refs/tags/${{ env.VERSION }}" >/dev/null 2>&1; then | ||
echo "Tag ${{ env.VERSION }} already exists. Skipping release." | ||
exit 0 | ||
fi | ||
# Neuen Git-Tag erstellen und pushen | ||
- name: Create and Push Tag | ||
run: | | ||
git tag -a ${{ env.VERSION }} -m "Release ${{ env.VERSION }}" | ||
git push origin ${{ env.VERSION }} | ||
# GitHub Release erstellen | ||
- name: Create GitHub Release | ||
uses: actions/create-release@v1 | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
release_name: "Release ${{ env.VERSION }}" | ||
body: ${{ env.NOTES }} | ||
draft: false | ||
prerelease: ${{ github.ref == 'refs/heads/dev' }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Beta Release 1.1.0 | ||
What’s New: | ||
• Modern, responsive UI with collapsible settings for better usability. | ||
• Dynamic result section with a copy-to-clipboard button for JSON output. | ||
• Automatic <br> conversion for line breaks in text input. | ||
• Improved error handling and streamlined functionality. | ||
|
||
## Release 1.0.1 | ||
Automated release of version 1.0.1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters