From 0ced985cc9a9b3e0665f224c3936c704dac0584a Mon Sep 17 00:00:00 2001 From: Abdenasser Date: Thu, 7 Nov 2024 20:35:11 +0100 Subject: [PATCH] release names --- .github/workflows/linux-aarch64-nightly.yml | 6 +++--- .github/workflows/linux-x86_64-nightly.yml | 6 +++--- .github/workflows/macos-nightly.yml | 6 +++--- .github/workflows/windows-nightly.yml | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/linux-aarch64-nightly.yml b/.github/workflows/linux-aarch64-nightly.yml index 0b736b3..50443d3 100644 --- a/.github/workflows/linux-aarch64-nightly.yml +++ b/.github/workflows/linux-aarch64-nightly.yml @@ -142,11 +142,11 @@ jobs: if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds uses: softprops/action-gh-release@v1 with: - name: Linux ARM64 Nightly Build ${{ github.sha }} - tag_name: linux-arm64-nightly-${{ github.sha }} + name: Linux ARM64 Nightly Build + tag_name: linux-arm64-nightly-latest files: | src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb - prerelease: true + prerelease: false env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/linux-x86_64-nightly.yml b/.github/workflows/linux-x86_64-nightly.yml index cb3c6d2..a4430ee 100644 --- a/.github/workflows/linux-x86_64-nightly.yml +++ b/.github/workflows/linux-x86_64-nightly.yml @@ -70,11 +70,11 @@ jobs: if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds uses: softprops/action-gh-release@v1 with: - name: Linux Nightly Build ${{ github.sha }} - tag_name: linux-nightly-${{ github.sha }} + name: Linux x86_64 Nightly Build + tag_name: linux-x86_64-nightly-latest files: | src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb - prerelease: true + prerelease: false env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/macos-nightly.yml b/.github/workflows/macos-nightly.yml index 4fef7b5..1eba505 100644 --- a/.github/workflows/macos-nightly.yml +++ b/.github/workflows/macos-nightly.yml @@ -70,11 +70,11 @@ jobs: if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds uses: softprops/action-gh-release@v1 with: - name: MacOS Nightly Build ${{ github.sha }} - tag_name: macos-nightly-${{ github.sha }} + name: MacOS Nightly Build + tag_name: macos-nightly-latest files: | src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg - prerelease: true + prerelease: false env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/windows-nightly.yml b/.github/workflows/windows-nightly.yml index c243447..36a90e0 100644 --- a/.github/workflows/windows-nightly.yml +++ b/.github/workflows/windows-nightly.yml @@ -51,9 +51,9 @@ jobs: if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds uses: softprops/action-gh-release@v1 with: - name: Windows Nightly Build ${{ github.sha }} - tag_name: windows-nightly-${{ github.sha }} + name: Windows Nightly Build + tag_name: windows-nightly-latest files: src-tauri/target/release/*.exe - prerelease: true + prerelease: false env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file