diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c89a4517d..9941c0360 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,20 +32,17 @@ jobs: node-version: 18 - name: Build Release Files - run: | - cd app - npm install - npm run build + run: cd app && npm install && npm run build env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} APPLE_ID: ${{ secrets.APPLEID }} APPLE_ID_PASS: ${{ secrets.APPLEIDPASS }} CSC_LINK: ${{ secrets.WINDOWS_CERTIFICATE_FILE }} CSC_KEY_PASSWORD: ${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }} - + - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: release_on_${{ matrix. os }} path: app/release/ - retention-days: 5 + retention-days: 5 \ No newline at end of file