workflow_tag_fix #33

Merged
phoenix merged 10 commits from workflow_tag_fix into devel 2025-04-05 21:27:51 +00:00
Showing only changes of commit 217fa5d533 - Show all commits

View File

@@ -42,6 +42,12 @@ jobs:
echo "Printing version"
echo "Version: ${{ steps.version.outputs.project_tag_release }}"
- name: Check Branch
if: github.ref != 'refs/heads/main' || github.ref != 'refs/heads/devel' # Replace 'main' with your required branch
run: |
echo "::error::Release can only be created from the 'main' branch."
exit 1
- name: Create GitHub Release
uses: actions/create-release@v1
env: