Swap master with versioned branch for nightlies

2.x is still nightly
This commit is contained in:
Darko Gjorgjijoski
2026-06-05 00:22:55 +02:00
parent 8e6e7f9981
commit 0c47869c51

View File

@@ -200,7 +200,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
branch: [master, develop]
branch: [2.x, develop]
steps:
- name: Checkout code
uses: actions/checkout@v4
@@ -235,7 +235,7 @@ jobs:
if: steps.changes.outputs.has_changes == 'true'
id: tag
run: |
if [ "${{ matrix.branch }}" = "master" ]; then
if [ "${{ matrix.branch }}" = "2.x" ]; then
echo "tag=nightly" >> $GITHUB_OUTPUT
elif [ "${{ matrix.branch }}" = "develop" ]; then
echo "tag=alpha" >> $GITHUB_OUTPUT