release names

This commit is contained in:
Abdenasser 2024-11-07 20:35:11 +01:00
parent 5b488a3887
commit 0ced985cc9
4 changed files with 12 additions and 12 deletions

View File

@ -142,11 +142,11 @@ jobs:
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
name: Linux ARM64 Nightly Build ${{ github.sha }} name: Linux ARM64 Nightly Build
tag_name: linux-arm64-nightly-${{ github.sha }} tag_name: linux-arm64-nightly-latest
files: | files: |
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
prerelease: true prerelease: false
env: env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

View File

@ -70,11 +70,11 @@ jobs:
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
name: Linux Nightly Build ${{ github.sha }} name: Linux x86_64 Nightly Build
tag_name: linux-nightly-${{ github.sha }} tag_name: linux-x86_64-nightly-latest
files: | files: |
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
prerelease: true prerelease: false
env: env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

View File

@ -70,11 +70,11 @@ jobs:
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
name: MacOS Nightly Build ${{ github.sha }} name: MacOS Nightly Build
tag_name: macos-nightly-${{ github.sha }} tag_name: macos-nightly-latest
files: | files: |
src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg
src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
prerelease: true prerelease: false
env: env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

View File

@ -51,9 +51,9 @@ jobs:
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
name: Windows Nightly Build ${{ github.sha }} name: Windows Nightly Build
tag_name: windows-nightly-${{ github.sha }} tag_name: windows-nightly-latest
files: src-tauri/target/release/*.exe files: src-tauri/target/release/*.exe
prerelease: true prerelease: false
env: env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}