From 55e4f86a39ce76607e288d61942ab01332bed751 Mon Sep 17 00:00:00 2001 From: KeksNino Date: Sat, 18 Oct 2025 15:59:50 +0200 Subject: [PATCH] update workflows --- .github/workflows/dev.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6d057f1..f709e95 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -25,14 +25,14 @@ jobs: matrix: include: - os: ubuntu-latest - artifact_name: SoftwareManager-dev-${{ github.sha }}-linux - asset_name: SoftwareManager-dev-${{ github.sha }}-linux + artifact_name: SoftwareManager-dev-linux + asset_name: SoftwareManager-dev-linux - os: windows-latest - artifact_name: SoftwareManager-dev-${{ github.sha }}-windows.exe - asset_name: SoftwareManager-dev-${{ github.sha }}-windows.exe + artifact_name: SoftwareManager-dev-windows.exe + asset_name: SoftwareManager-dev-windows.exe - os: macos-latest - artifact_name: SoftwareManager-dev-${{ github.sha }}-macos - asset_name: SoftwareManager-dev-${{ github.sha }}-macos + artifact_name: SoftwareManager-dev-macos + asset_name: SoftwareManager-dev-macos runs-on: ${{ matrix.os }} @@ -127,7 +127,7 @@ jobs: chmod +x release/SoftwareManager-dev-linux release/SoftwareManager-dev-macos ls -la release/ - - name: Create Prerelease (Public) + - name: Create Release (Public) uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.version.outputs.version }} @@ -135,8 +135,8 @@ jobs: draft: false prerelease: false files: | - release/SoftwareManager-dev-${{ steps.version.outputs.short_sha }}-linux - release/SoftwareManager-dev-${{ steps.version.outputs.short_sha }}-windows.exe - release/SoftwareManager-dev-${{ steps.version.outputs.short_sha }}-macos + release/SoftwareManager-dev-linux + release/SoftwareManager-dev-windows.exe + release/SoftwareManager-dev-macos env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}