From 3f0f454578032e76499b529ff9fa49d607a3a91d Mon Sep 17 00:00:00 2001 From: shayaa <101264710+Vxrtrauter@users.noreply.github.com> Date: Tue, 14 Oct 2025 10:52:58 +0200 Subject: [PATCH] revert some workflow changes --- .github/workflows/dev.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index b95b05f..976f996 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -113,7 +113,7 @@ jobs: run: | COMMIT_SHA=${{ github.sha }} SHORT_SHA=${COMMIT_SHA:0:7} - VERSION="dev" + VERSION="${SHORT_SHA}-dev" echo "version=${VERSION}" >> $GITHUB_OUTPUT echo "short_sha=${SHORT_SHA}" >> $GITHUB_OUTPUT echo "Generated version: ${VERSION}" @@ -131,8 +131,8 @@ jobs: - name: Create Prerelease (Public) uses: softprops/action-gh-release@v2 with: - tag_name: dev - name: dev-${{ steps.version.outputs.short_sha }} + tag_name: ${{ steps.version.outputs.version }} + name: ${{ steps.version.outputs.version }} draft: false prerelease: true files: |