Обновить .gitea/workflows/linux.yaml

This commit is contained in:
2026-03-24 14:13:09 +00:00
parent 7c2718ff9a
commit 013a5d9f17

View File

@@ -17,6 +17,9 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
arch: [x64, arm64] arch: [x64, arm64]
env:
ARCH: ${{ matrix.arch }}
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v6 uses: actions/checkout@v6
@@ -53,28 +56,32 @@ jobs:
- name: Install npm dependencies - name: Install npm dependencies
run: npm install --no-audit --no-fund run: npm install --no-audit --no-fund
- name: Build the application (${{ matrix.arch }}) - name: Debug ARCH
run: | run: |
npx electron-vite build echo "matrix.arch = ${{ matrix.arch }}"
npx electron-builder --linux --${{ matrix.arch }} echo "ARCH = $ARCH"
- name: Check if files exist (${{ matrix.arch }}) - name: Build the application (${{ env.ARCH }})
run: |
mkdir -p dist/builds/linux/$ARCH
mkdir -p dist/builds/linux/x86_64
npx electron-vite build
npx electron-builder --linux --$ARCH
- name: Check if files exist (${{ env.ARCH }})
run: | run: |
echo "=== Checking dist structure ===" echo "=== Checking dist structure ==="
find dist/builds/linux/${{ matrix.arch }} -type f -name "*.AppImage" 2>/dev/null || echo "No AppImage files found" find dist/builds/linux/$ARCH -type f -name "*.AppImage" 2>/dev/null || echo "No AppImage files found"
ls -la dist/builds/linux/${{ matrix.arch }}/ 2>/dev/null || echo "arch folder not found" ls -la dist/builds/linux/$ARCH/ 2>/dev/null || echo "arch folder not found"
- name: Install SCP in Docker container - name: Upload ${{ env.ARCH }} to SSH using SCP
run: apt-get install -y openssh-client
- name: Upload ${{ matrix.arch }} to SSH using SCP
uses: appleboy/scp-action@master uses: appleboy/scp-action@master
with: with:
host: ${{ secrets.SDU_SSH_HOST }} host: ${{ secrets.SDU_SSH_HOST }}
username: ${{ secrets.SDU_SSH_USERNAME }} username: ${{ secrets.SDU_SSH_USERNAME }}
password: ${{ secrets.SDU_SSH_PASSWORD }} password: ${{ secrets.SDU_SSH_PASSWORD }}
port: 22 port: 22
source: "dist/builds/linux/${{ matrix.arch }}/Rosetta-*.AppImage" source: dist/builds/linux/${{ env.ARCH }}/Rosetta-*.AppImage
target: "${{ secrets.SDU_SSH_KERNEL }}/linux/${{ matrix.arch }}" target: ${{ secrets.SDU_SSH_KERNEL }}/linux/${{ env.ARCH }}
strip_components: 4 strip_components: 4
rm: true rm: true