try fix ci #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Canary | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths-ignore: | |
| - '**.md' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Checkout Assets | |
| uses: clansty/checkout@main | |
| with: | |
| repository: MuNET-OSS/AquaMai-Build-Assets | |
| ssh-key: ${{ secrets.BUILD_ASSETS_KEY }} | |
| path: build-assets | |
| max-attempts: 50 | |
| min-retry-interval: 1 | |
| max-retry-interval: 5 | |
| - name: Copy Assets | |
| shell: powershell | |
| run: | | |
| Write-Host "Copying assets..." | |
| Copy-Item -Path "build-assets/SDEZ/*" -Destination "AquaMai/Libs/" -Recurse -Force | |
| - name: Setup Nuget | |
| run: | | |
| dotnet nuget list source | |
| if (-not (dotnet nuget list source | Select-String "nuget.org")) { | |
| dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org | |
| } | |
| - name: Build | |
| shell: powershell | |
| run: | | |
| .\Packaging\Build.ps1 -Mode Canary | |