From 0e5384b90885616424f3494a17c8e00892c8788d Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Tue, 24 Mar 2026 16:19:07 +0200 Subject: [PATCH] ci/cd test --- .gitea/workflows/linux.yaml | 45 ++++++++----------------------------- 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/.gitea/workflows/linux.yaml b/.gitea/workflows/linux.yaml index 6ed6918..1138b39 100644 --- a/.gitea/workflows/linux.yaml +++ b/.gitea/workflows/linux.yaml @@ -17,8 +17,6 @@ jobs: fail-fast: false matrix: arch: [x64, arm64] - env: - ARCH: ${{ matrix.arch }} steps: - name: Checkout code @@ -29,59 +27,34 @@ jobs: with: node-version: '22' - - name: Cache npm dependencies - uses: actions/cache@v5 - with: - path: ~/.npm - key: ${{ runner.os }}-linux-npm-${{ hashFiles('**/package.json') }} - restore-keys: | - ${{ runner.os }}-linux-npm- - if-no-files-found: ignore - - - name: Cache electron-builder - uses: actions/cache@v5 - with: - path: | - ~/.cache/electron - key: ${{ runner.os }}-linux-electron-builder-${{ hashFiles('**/electron-builder.yml') }} - restore-keys: | - ${{ runner.os }}-linux-electron-builder- - if-no-files-found: ignore - - - name: NPM offline setup - run: | - npm config set cache ~/.npm --global - npm config set prefer-offline true --global - - name: Install npm dependencies run: npm install --no-audit --no-fund - name: Debug ARCH run: | echo "matrix.arch = ${{ matrix.arch }}" - echo "ARCH = $ARCH" - - name: Build the application (${{ env.ARCH }}) + - name: Build the application run: | - mkdir -p dist/builds/linux/$ARCH + mkdir -p dist/builds/linux/${{ matrix.arch }} mkdir -p dist/builds/linux/x86_64 npx electron-vite build - npx electron-builder --linux --$ARCH + npx electron-builder --linux --${{ matrix.arch }} - - name: Check if files exist (${{ env.ARCH }}) + - name: Check if files exist run: | echo "=== Checking dist structure ===" - find dist/builds/linux/$ARCH -type f -name "*.AppImage" 2>/dev/null || echo "No AppImage files found" - ls -la dist/builds/linux/$ARCH/ 2>/dev/null || echo "arch folder not found" + find dist/builds/linux/${{ matrix.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" - - name: Upload ${{ env.ARCH }} to SSH using SCP + - name: Upload to SSH using SCP uses: appleboy/scp-action@master with: host: ${{ secrets.SDU_SSH_HOST }} username: ${{ secrets.SDU_SSH_USERNAME }} password: ${{ secrets.SDU_SSH_PASSWORD }} port: 22 - source: dist/builds/linux/${{ env.ARCH }}/Rosetta-*.AppImage - target: ${{ secrets.SDU_SSH_KERNEL }}/linux/${{ env.ARCH }} + source: dist/builds/linux/${{ matrix.arch }}/Rosetta-*.AppImage + target: ${{ secrets.SDU_SSH_KERNEL }}/linux/${{ matrix.arch }} strip_components: 4 rm: true \ No newline at end of file