ci: comenta job desktop_release (sem runner Windows)
O job ficava 'aguardando' eternamente porque nao existe runner com labels [self-hosted, windows, desktop]. Comentado ate que um runner Windows seja configurado. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c83cbd7e48
commit
acb2c35eeb
1 changed files with 42 additions and 39 deletions
|
|
@ -492,42 +492,45 @@ jobs:
|
||||||
}
|
}
|
||||||
done
|
done
|
||||||
|
|
||||||
desktop_release:
|
# NOTA: Job comentado porque nao ha runner Windows configurado.
|
||||||
name: Desktop Release (Windows)
|
# Descomentar quando configurar um runner com labels: [self-hosted, windows, desktop]
|
||||||
timeout-minutes: 30
|
#
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
# desktop_release:
|
||||||
runs-on: [ self-hosted, windows, desktop ]
|
# name: Desktop Release (Windows)
|
||||||
defaults:
|
# timeout-minutes: 30
|
||||||
run:
|
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
||||||
working-directory: apps/desktop
|
# runs-on: [ self-hosted, windows, desktop ]
|
||||||
steps:
|
# defaults:
|
||||||
- name: Checkout
|
# run:
|
||||||
uses: https://github.com/actions/checkout@v4
|
# working-directory: apps/desktop
|
||||||
|
# steps:
|
||||||
- name: Setup pnpm
|
# - name: Checkout
|
||||||
uses: https://github.com/pnpm/action-setup@v4
|
# uses: https://github.com/actions/checkout@v4
|
||||||
with:
|
#
|
||||||
version: 10.20.0
|
# - name: Setup pnpm
|
||||||
|
# uses: https://github.com/pnpm/action-setup@v4
|
||||||
- name: Setup Node.js
|
# with:
|
||||||
uses: https://github.com/actions/setup-node@v4
|
# version: 10.20.0
|
||||||
with:
|
#
|
||||||
node-version: 20
|
# - name: Setup Node.js
|
||||||
|
# uses: https://github.com/actions/setup-node@v4
|
||||||
- name: Install deps (desktop)
|
# with:
|
||||||
run: pnpm install --frozen-lockfile
|
# node-version: 20
|
||||||
|
#
|
||||||
- name: Build with Tauri
|
# - name: Install deps (desktop)
|
||||||
uses: https://github.com/tauri-apps/tauri-action@v0
|
# run: pnpm install --frozen-lockfile
|
||||||
env:
|
#
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# - name: Build with Tauri
|
||||||
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
# uses: https://github.com/tauri-apps/tauri-action@v0
|
||||||
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
# env:
|
||||||
with:
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
projectPath: apps/desktop
|
# TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
||||||
|
# TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
||||||
- name: Upload bundles to VPS
|
# with:
|
||||||
run: |
|
# projectPath: apps/desktop
|
||||||
# Upload via SCP (configurar chave SSH no runner Windows)
|
#
|
||||||
# scp -r src-tauri/target/release/bundle/* user@vps:/var/www/updates/
|
# - name: Upload bundles to VPS
|
||||||
echo "TODO: Configurar upload para VPS"
|
# run: |
|
||||||
|
# # Upload via SCP (configurar chave SSH no runner Windows)
|
||||||
|
# # scp -r src-tauri/target/release/bundle/* user@vps:/var/www/updates/
|
||||||
|
# echo "TODO: Configurar upload para VPS"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue