mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-25 07:11:38 +00:00
Allow pipeline runs for PR & publish artifacts (#713)
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,deb,updater, appimage,deb) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,deb,updater, appimage,deb) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,deb,updater, appimage,deb) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,deb,updater, appimage,deb) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
This commit is contained in:
parent
37d026ea6f
commit
658a8aa125
195
.github/workflows/build-and-release.yml
vendored
195
.github/workflows/build-and-release.yml
vendored
@ -5,15 +5,140 @@ on:
|
|||||||
- main
|
- main
|
||||||
tags:
|
tags:
|
||||||
- "v*.*.*"
|
- "v*.*.*"
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- labeled
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RETENTION_INTERMEDIATE_ASSETS: 1
|
RETENTION_INTERMEDIATE_ASSETS: 1
|
||||||
RETENTION_RELEASE_ASSETS: 30
|
RETENTION_RELEASE_ASSETS: 30
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
determine_run_mode:
|
||||||
|
name: Determine run mode
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
outputs:
|
||||||
|
is_release: ${{ steps.determine.outputs.is_release }}
|
||||||
|
is_main_push: ${{ steps.determine.outputs.is_main_push }}
|
||||||
|
is_labeled_pr: ${{ steps.determine.outputs.is_labeled_pr }}
|
||||||
|
is_pr_build: ${{ steps.determine.outputs.is_pr_build }}
|
||||||
|
is_internal_pr: ${{ steps.determine.outputs.is_internal_pr }}
|
||||||
|
build_enabled: ${{ steps.determine.outputs.build_enabled }}
|
||||||
|
artifact_retention_days: ${{ steps.determine.outputs.artifact_retention_days }}
|
||||||
|
skip_reason: ${{ steps.determine.outputs.skip_reason }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Determine run mode
|
||||||
|
id: determine
|
||||||
|
env:
|
||||||
|
EVENT_NAME: ${{ github.event_name }}
|
||||||
|
REF: ${{ github.ref }}
|
||||||
|
PR_LABELS: ${{ join(github.event.pull_request.labels.*.name, ' ') }}
|
||||||
|
PR_HEAD_REPO: ${{ github.event.pull_request.head.repo.full_name }}
|
||||||
|
REPOSITORY: ${{ github.repository }}
|
||||||
|
run: |
|
||||||
|
is_release=false
|
||||||
|
is_main_push=false
|
||||||
|
is_labeled_pr=false
|
||||||
|
is_pr_build=false
|
||||||
|
is_internal_pr=false
|
||||||
|
build_enabled=false
|
||||||
|
artifact_retention_days=0
|
||||||
|
skip_reason="Build disabled: event did not match main push, release tag, or labeled internal PR."
|
||||||
|
|
||||||
|
if [[ "$EVENT_NAME" == "pull_request" && "$PR_HEAD_REPO" == "$REPOSITORY" ]]; then
|
||||||
|
is_internal_pr=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$REF" == refs/tags/v* ]]; then
|
||||||
|
is_release=true
|
||||||
|
build_enabled=true
|
||||||
|
artifact_retention_days=${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
||||||
|
skip_reason=""
|
||||||
|
elif [[ "$EVENT_NAME" == "push" && "$REF" == "refs/heads/main" ]]; then
|
||||||
|
is_main_push=true
|
||||||
|
build_enabled=true
|
||||||
|
artifact_retention_days=7
|
||||||
|
skip_reason=""
|
||||||
|
elif [[ "$EVENT_NAME" == "pull_request" && " $PR_LABELS " == *" run-pipeline "* ]]; then
|
||||||
|
is_labeled_pr=true
|
||||||
|
is_pr_build=true
|
||||||
|
build_enabled=true
|
||||||
|
artifact_retention_days=3
|
||||||
|
skip_reason=""
|
||||||
|
elif [[ "$EVENT_NAME" == "pull_request" && " $PR_LABELS " != *" run-pipeline "* ]]; then
|
||||||
|
skip_reason="Build disabled: PR does not have the required 'run-pipeline' label."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "is_release=${is_release}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "is_main_push=${is_main_push}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "is_labeled_pr=${is_labeled_pr}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "is_pr_build=${is_pr_build}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "is_internal_pr=${is_internal_pr}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "build_enabled=${build_enabled}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "artifact_retention_days=${artifact_retention_days}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "skip_reason=${skip_reason}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Log run mode
|
||||||
|
env:
|
||||||
|
EVENT_NAME: ${{ github.event_name }}
|
||||||
|
REF: ${{ github.ref }}
|
||||||
|
PR_LABELS: ${{ join(github.event.pull_request.labels.*.name, ', ') }}
|
||||||
|
PR_HEAD_REPO: ${{ github.event.pull_request.head.repo.full_name }}
|
||||||
|
REPOSITORY: ${{ github.repository }}
|
||||||
|
IS_RELEASE: ${{ steps.determine.outputs.is_release }}
|
||||||
|
IS_MAIN_PUSH: ${{ steps.determine.outputs.is_main_push }}
|
||||||
|
IS_LABELED_PR: ${{ steps.determine.outputs.is_labeled_pr }}
|
||||||
|
IS_PR_BUILD: ${{ steps.determine.outputs.is_pr_build }}
|
||||||
|
IS_INTERNAL_PR: ${{ steps.determine.outputs.is_internal_pr }}
|
||||||
|
BUILD_ENABLED: ${{ steps.determine.outputs.build_enabled }}
|
||||||
|
ARTIFACT_RETENTION_DAYS: ${{ steps.determine.outputs.artifact_retention_days }}
|
||||||
|
SKIP_REASON: ${{ steps.determine.outputs.skip_reason }}
|
||||||
|
run: |
|
||||||
|
echo "event_name: ${EVENT_NAME}"
|
||||||
|
echo "ref: ${REF}"
|
||||||
|
echo "repository: ${REPOSITORY}"
|
||||||
|
echo "pr_head_repo: ${PR_HEAD_REPO}"
|
||||||
|
echo "pr_labels: ${PR_LABELS}"
|
||||||
|
echo "is_release: ${IS_RELEASE}"
|
||||||
|
echo "is_main_push: ${IS_MAIN_PUSH}"
|
||||||
|
echo "is_labeled_pr: ${IS_LABELED_PR}"
|
||||||
|
echo "is_pr_build: ${IS_PR_BUILD}"
|
||||||
|
echo "is_internal_pr: ${IS_INTERNAL_PR}"
|
||||||
|
echo "build_enabled: ${BUILD_ENABLED}"
|
||||||
|
echo "artifact_retention_days: ${ARTIFACT_RETENTION_DAYS}"
|
||||||
|
echo "skip_reason: ${SKIP_REASON}"
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "### Run Mode"
|
||||||
|
echo ""
|
||||||
|
echo "| Key | Value |"
|
||||||
|
echo "| --- | --- |"
|
||||||
|
echo "| event_name | ${EVENT_NAME} |"
|
||||||
|
echo "| ref | ${REF} |"
|
||||||
|
echo "| repository | ${REPOSITORY} |"
|
||||||
|
echo "| pr_head_repo | ${PR_HEAD_REPO} |"
|
||||||
|
echo "| pr_labels | ${PR_LABELS} |"
|
||||||
|
echo "| is_release | ${IS_RELEASE} |"
|
||||||
|
echo "| is_main_push | ${IS_MAIN_PUSH} |"
|
||||||
|
echo "| is_labeled_pr | ${IS_LABELED_PR} |"
|
||||||
|
echo "| is_pr_build | ${IS_PR_BUILD} |"
|
||||||
|
echo "| is_internal_pr | ${IS_INTERNAL_PR} |"
|
||||||
|
echo "| build_enabled | ${BUILD_ENABLED} |"
|
||||||
|
echo "| artifact_retention_days | ${ARTIFACT_RETENTION_DAYS} |"
|
||||||
|
echo "| skip_reason | ${SKIP_REASON} |"
|
||||||
|
} >> "$GITHUB_STEP_SUMMARY"
|
||||||
|
|
||||||
read_metadata:
|
read_metadata:
|
||||||
name: Read metadata
|
name: Read metadata
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: determine_run_mode
|
||||||
|
if: needs.determine_run_mode.outputs.build_enabled == 'true'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
outputs:
|
outputs:
|
||||||
@ -62,6 +187,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Read changelog
|
- name: Read changelog
|
||||||
id: read_changelog
|
id: read_changelog
|
||||||
|
if: needs.determine_run_mode.outputs.is_release == 'true'
|
||||||
run: |
|
run: |
|
||||||
# Ensure, that the matching changelog file for the current version exists:
|
# Ensure, that the matching changelog file for the current version exists:
|
||||||
if [ ! -f "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md" ]; then
|
if [ ! -f "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md" ]; then
|
||||||
@ -81,7 +207,8 @@ jobs:
|
|||||||
|
|
||||||
build_main:
|
build_main:
|
||||||
name: Build app (${{ matrix.dotnet_runtime }})
|
name: Build app (${{ matrix.dotnet_runtime }})
|
||||||
needs: read_metadata
|
needs: [determine_run_mode, read_metadata]
|
||||||
|
if: needs.determine_run_mode.outputs.build_enabled == 'true'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
@ -93,37 +220,43 @@ jobs:
|
|||||||
rust_target: 'aarch64-apple-darwin'
|
rust_target: 'aarch64-apple-darwin'
|
||||||
dotnet_runtime: 'osx-arm64'
|
dotnet_runtime: 'osx-arm64'
|
||||||
dotnet_name_postfix: '-aarch64-apple-darwin'
|
dotnet_name_postfix: '-aarch64-apple-darwin'
|
||||||
tauri_bundle: 'dmg updater'
|
tauri_bundle: 'dmg,updater'
|
||||||
|
tauri_bundle_pr: 'dmg'
|
||||||
|
|
||||||
- platform: 'macos-latest' # for Intel-based macOS
|
- platform: 'macos-latest' # for Intel-based macOS
|
||||||
rust_target: 'x86_64-apple-darwin'
|
rust_target: 'x86_64-apple-darwin'
|
||||||
dotnet_runtime: 'osx-x64'
|
dotnet_runtime: 'osx-x64'
|
||||||
dotnet_name_postfix: '-x86_64-apple-darwin'
|
dotnet_name_postfix: '-x86_64-apple-darwin'
|
||||||
tauri_bundle: 'dmg updater'
|
tauri_bundle: 'dmg,updater'
|
||||||
|
tauri_bundle_pr: 'dmg'
|
||||||
|
|
||||||
- platform: 'ubuntu-22.04' # for x86-based Linux
|
- platform: 'ubuntu-22.04' # for x86-based Linux
|
||||||
rust_target: 'x86_64-unknown-linux-gnu'
|
rust_target: 'x86_64-unknown-linux-gnu'
|
||||||
dotnet_runtime: 'linux-x64'
|
dotnet_runtime: 'linux-x64'
|
||||||
dotnet_name_postfix: '-x86_64-unknown-linux-gnu'
|
dotnet_name_postfix: '-x86_64-unknown-linux-gnu'
|
||||||
tauri_bundle: 'appimage deb updater'
|
tauri_bundle: 'appimage,deb,updater'
|
||||||
|
tauri_bundle_pr: 'appimage,deb'
|
||||||
|
|
||||||
- platform: 'ubuntu-22.04-arm' # for ARM-based Linux
|
- platform: 'ubuntu-22.04-arm' # for ARM-based Linux
|
||||||
rust_target: 'aarch64-unknown-linux-gnu'
|
rust_target: 'aarch64-unknown-linux-gnu'
|
||||||
dotnet_runtime: 'linux-arm64'
|
dotnet_runtime: 'linux-arm64'
|
||||||
dotnet_name_postfix: '-aarch64-unknown-linux-gnu'
|
dotnet_name_postfix: '-aarch64-unknown-linux-gnu'
|
||||||
tauri_bundle: 'appimage deb updater'
|
tauri_bundle: 'appimage,deb,updater'
|
||||||
|
tauri_bundle_pr: 'appimage,deb'
|
||||||
|
|
||||||
- platform: 'windows-latest' # for x86-based Windows
|
- platform: 'windows-latest' # for x86-based Windows
|
||||||
rust_target: 'x86_64-pc-windows-msvc'
|
rust_target: 'x86_64-pc-windows-msvc'
|
||||||
dotnet_runtime: 'win-x64'
|
dotnet_runtime: 'win-x64'
|
||||||
dotnet_name_postfix: '-x86_64-pc-windows-msvc.exe'
|
dotnet_name_postfix: '-x86_64-pc-windows-msvc.exe'
|
||||||
tauri_bundle: 'nsis updater'
|
tauri_bundle: 'nsis,updater'
|
||||||
|
tauri_bundle_pr: 'nsis'
|
||||||
|
|
||||||
- platform: 'windows-latest' # for ARM-based Windows
|
- platform: 'windows-latest' # for ARM-based Windows
|
||||||
rust_target: 'aarch64-pc-windows-msvc'
|
rust_target: 'aarch64-pc-windows-msvc'
|
||||||
dotnet_runtime: 'win-arm64'
|
dotnet_runtime: 'win-arm64'
|
||||||
dotnet_name_postfix: '-aarch64-pc-windows-msvc.exe'
|
dotnet_name_postfix: '-aarch64-pc-windows-msvc.exe'
|
||||||
tauri_bundle: 'nsis updater'
|
tauri_bundle: 'nsis,updater'
|
||||||
|
tauri_bundle_pr: 'nsis'
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
@ -632,10 +765,18 @@ jobs:
|
|||||||
PRIVATE_PUBLISH_KEY: ${{ secrets.PRIVATE_PUBLISH_KEY }}
|
PRIVATE_PUBLISH_KEY: ${{ secrets.PRIVATE_PUBLISH_KEY }}
|
||||||
PRIVATE_PUBLISH_KEY_PASSWORD: ${{ secrets.PRIVATE_PUBLISH_KEY_PASSWORD }}
|
PRIVATE_PUBLISH_KEY_PASSWORD: ${{ secrets.PRIVATE_PUBLISH_KEY_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
|
bundles="${{ matrix.tauri_bundle }}"
|
||||||
|
|
||||||
|
if [ "${{ needs.determine_run_mode.outputs.is_pr_build }}" = "true" ]; then
|
||||||
|
echo "Running PR test build without updater bundle signing"
|
||||||
|
bundles="${{ matrix.tauri_bundle_pr }}"
|
||||||
|
else
|
||||||
|
export TAURI_PRIVATE_KEY="$PRIVATE_PUBLISH_KEY"
|
||||||
|
export TAURI_KEY_PASSWORD="$PRIVATE_PUBLISH_KEY_PASSWORD"
|
||||||
|
fi
|
||||||
|
|
||||||
cd runtime
|
cd runtime
|
||||||
export TAURI_PRIVATE_KEY="$PRIVATE_PUBLISH_KEY"
|
cargo tauri build --target ${{ matrix.rust_target }} --bundles "$bundles"
|
||||||
export TAURI_KEY_PASSWORD="$PRIVATE_PUBLISH_KEY_PASSWORD"
|
|
||||||
cargo tauri build --target ${{ matrix.rust_target }} --bundles ${{ matrix.tauri_bundle }}
|
|
||||||
|
|
||||||
- name: Build Tauri project (Windows)
|
- name: Build Tauri project (Windows)
|
||||||
if: matrix.platform == 'windows-latest'
|
if: matrix.platform == 'windows-latest'
|
||||||
@ -643,13 +784,21 @@ jobs:
|
|||||||
PRIVATE_PUBLISH_KEY: ${{ secrets.PRIVATE_PUBLISH_KEY }}
|
PRIVATE_PUBLISH_KEY: ${{ secrets.PRIVATE_PUBLISH_KEY }}
|
||||||
PRIVATE_PUBLISH_KEY_PASSWORD: ${{ secrets.PRIVATE_PUBLISH_KEY_PASSWORD }}
|
PRIVATE_PUBLISH_KEY_PASSWORD: ${{ secrets.PRIVATE_PUBLISH_KEY_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
|
$bundles = "${{ matrix.tauri_bundle }}"
|
||||||
|
|
||||||
|
if ("${{ needs.determine_run_mode.outputs.is_pr_build }}" -eq "true") {
|
||||||
|
Write-Output "Running PR test build without updater bundle signing"
|
||||||
|
$bundles = "${{ matrix.tauri_bundle_pr }}"
|
||||||
|
} else {
|
||||||
|
$env:TAURI_PRIVATE_KEY="$env:PRIVATE_PUBLISH_KEY"
|
||||||
|
$env:TAURI_KEY_PASSWORD="$env:PRIVATE_PUBLISH_KEY_PASSWORD"
|
||||||
|
}
|
||||||
|
|
||||||
cd runtime
|
cd runtime
|
||||||
$env:TAURI_PRIVATE_KEY="$env:PRIVATE_PUBLISH_KEY"
|
cargo tauri build --target ${{ matrix.rust_target }} --bundles $bundles
|
||||||
$env:TAURI_KEY_PASSWORD="$env:PRIVATE_PUBLISH_KEY_PASSWORD"
|
|
||||||
cargo tauri build --target ${{ matrix.rust_target }} --bundles ${{ matrix.tauri_bundle }}
|
|
||||||
|
|
||||||
- name: Upload artifact (macOS)
|
- name: Upload artifact (macOS)
|
||||||
if: startsWith(matrix.platform, 'macos') && startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(matrix.platform, 'macos')
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MindWork AI Studio (macOS ${{ matrix.dotnet_runtime }})
|
name: MindWork AI Studio (macOS ${{ matrix.dotnet_runtime }})
|
||||||
@ -657,10 +806,10 @@ jobs:
|
|||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/dmg/MindWork AI Studio_*.dmg
|
runtime/target/${{ matrix.rust_target }}/release/bundle/dmg/MindWork AI Studio_*.dmg
|
||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/macos/MindWork AI Studio.app.tar.gz*
|
runtime/target/${{ matrix.rust_target }}/release/bundle/macos/MindWork AI Studio.app.tar.gz*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
retention-days: ${{ fromJSON(needs.determine_run_mode.outputs.artifact_retention_days) }}
|
||||||
|
|
||||||
- name: Upload artifact (Windows - MSI)
|
- name: Upload artifact (Windows - MSI)
|
||||||
if: startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'msi') && startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'msi')
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MindWork AI Studio (Windows - MSI ${{ matrix.dotnet_runtime }})
|
name: MindWork AI Studio (Windows - MSI ${{ matrix.dotnet_runtime }})
|
||||||
@ -668,10 +817,10 @@ jobs:
|
|||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio_*.msi
|
runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio_*.msi
|
||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio*msi.zip*
|
runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio*msi.zip*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
retention-days: ${{ fromJSON(needs.determine_run_mode.outputs.artifact_retention_days) }}
|
||||||
|
|
||||||
- name: Upload artifact (Windows - NSIS)
|
- name: Upload artifact (Windows - NSIS)
|
||||||
if: startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'nsis') && startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'nsis')
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MindWork AI Studio (Windows - NSIS ${{ matrix.dotnet_runtime }})
|
name: MindWork AI Studio (Windows - NSIS ${{ matrix.dotnet_runtime }})
|
||||||
@ -679,20 +828,20 @@ jobs:
|
|||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio_*.exe
|
runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio_*.exe
|
||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio*nsis.zip*
|
runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio*nsis.zip*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
retention-days: ${{ fromJSON(needs.determine_run_mode.outputs.artifact_retention_days) }}
|
||||||
|
|
||||||
- name: Upload artifact (Linux - Debian Package)
|
- name: Upload artifact (Linux - Debian Package)
|
||||||
if: startsWith(matrix.platform, 'ubuntu') && contains(matrix.tauri_bundle, 'deb') && startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(matrix.platform, 'ubuntu') && contains(matrix.tauri_bundle, 'deb')
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MindWork AI Studio (Linux - deb ${{ matrix.dotnet_runtime }})
|
name: MindWork AI Studio (Linux - deb ${{ matrix.dotnet_runtime }})
|
||||||
path: |
|
path: |
|
||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/deb/mind-work-ai-studio_*.deb
|
runtime/target/${{ matrix.rust_target }}/release/bundle/deb/mind-work-ai-studio_*.deb
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
retention-days: ${{ fromJSON(needs.determine_run_mode.outputs.artifact_retention_days) }}
|
||||||
|
|
||||||
- name: Upload artifact (Linux - AppImage)
|
- name: Upload artifact (Linux - AppImage)
|
||||||
if: startsWith(matrix.platform, 'ubuntu') && contains(matrix.tauri_bundle, 'appimage') && startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(matrix.platform, 'ubuntu') && contains(matrix.tauri_bundle, 'appimage')
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MindWork AI Studio (Linux - AppImage ${{ matrix.dotnet_runtime }})
|
name: MindWork AI Studio (Linux - AppImage ${{ matrix.dotnet_runtime }})
|
||||||
@ -700,7 +849,7 @@ jobs:
|
|||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/appimage/mind-work-ai-studio_*.AppImage
|
runtime/target/${{ matrix.rust_target }}/release/bundle/appimage/mind-work-ai-studio_*.AppImage
|
||||||
runtime/target/${{ matrix.rust_target }}/release/bundle/appimage/mind-work-ai-studio*AppImage.tar.gz*
|
runtime/target/${{ matrix.rust_target }}/release/bundle/appimage/mind-work-ai-studio*AppImage.tar.gz*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
|
retention-days: ${{ fromJSON(needs.determine_run_mode.outputs.artifact_retention_days) }}
|
||||||
|
|
||||||
create_release:
|
create_release:
|
||||||
name: Prepare & create release
|
name: Prepare & create release
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user