From 0bf330ac5b8dfb3fb27e04941366a44fb7d5c637 Mon Sep 17 00:00:00 2001 From: HRiggs Date: Mon, 15 Dec 2025 12:43:11 -0500 Subject: [PATCH] no more github actions for windows --- .gitea/workflows/release.yml | 37 ++++++++---------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index c093640..a426b21 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -33,36 +33,15 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Setup Git Bash (for Flutter internal scripts) - shell: pwsh - run: | - # Add Git Bash to PATH for Flutter internal scripts that might need it - $gitPath = "${env:ProgramFiles}\Git\bin" - if (Test-Path $gitPath) { - $env:PATH = "$gitPath;$env:PATH" - echo "PATH=$env:PATH" >> $env:GITHUB_ENV - Write-Host "Added Git Bash to PATH: $gitPath" - } else { - Write-Host "Git Bash not found at expected location" - } - - - name: Setup Flutter - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - cache: true - - - name: Enable Windows desktop - shell: pwsh - run: flutter config --enable-windows-desktop - - name: Verify Flutter setup - shell: pwsh - run: flutter doctor -v + shell: powershell + run: | + flutter --version + flutter doctor -v - name: Create production .env file working-directory: flutter_app - shell: pwsh + shell: powershell env: WS_URL: ${{ secrets.WS_URL }} API_URL: ${{ secrets.API_URL }} @@ -72,12 +51,12 @@ jobs: - name: Install dependencies working-directory: flutter_app - shell: pwsh + shell: powershell run: flutter pub get - name: Setup Certificate for Signing working-directory: flutter_app - shell: pwsh + shell: powershell env: CERT_BASE64: ${{ secrets.CERT_BASE64 }} CERT_PASSWORD: ${{ secrets.CERT_PASSWORD }} @@ -101,7 +80,7 @@ jobs: - name: Build Windows release with installer working-directory: flutter_app - shell: pwsh + shell: powershell env: CERT_PASSWORD: ${{ secrets.CERT_PASSWORD }} run: |