test release workflow

This commit is contained in:
Abdenasser 2024-11-07 20:08:36 +01:00
parent fcb5cfb9ea
commit 12053fe1b4
5 changed files with 5 additions and 9 deletions

View File

@ -139,7 +139,7 @@ jobs:
path: src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
- name: Create Release
if: github.event_name == 'schedule' # Only create release for scheduled builds
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 }}

View File

@ -67,7 +67,7 @@ jobs:
path: src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
- name: Create Release
if: github.event_name == 'schedule' # Only create release for scheduled builds
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 }}

View File

@ -67,7 +67,7 @@ jobs:
path: src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
- name: Create Release
if: github.event_name == 'schedule' # Only create release for scheduled builds
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
uses: softprops/action-gh-release@v1
with:
name: Nightly Build ${{ github.sha }}

View File

@ -14,25 +14,21 @@ jobs:
with:
workflow: macos-nightly.yml
token: ${{ secrets.PAT_TOKEN }}
inputs: '{"event_name": "schedule"}'
- name: Trigger Windows Build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: windows-nightly.yml
token: ${{ secrets.PAT_TOKEN }}
inputs: '{"event_name": "schedule"}'
- name: Trigger Linux x86_64 Build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: linux-x86_64-nightly.yml
token: ${{ secrets.PAT_TOKEN }}
inputs: '{"event_name": "schedule"}'
- name: Trigger Linux ARM64 Build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: linux-aarch64-nightly.yml
token: ${{ secrets.PAT_TOKEN }}
inputs: '{"event_name": "schedule"}'
token: ${{ secrets.PAT_TOKEN }}

View File

@ -48,7 +48,7 @@ jobs:
path: src-tauri/target/release/*.exe
- name: Create Release
if: github.event_name == 'schedule' # Only create release for scheduled builds
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 }}