diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a51fbdfb..cc4f92d6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,20 +13,20 @@ jobs: matrix: settings: # MacOS (Intel) - - platform: 'macos-latest' - target: 'x86_64-apple-darwin' + - platform: macos-latest + target: x86_64-apple-darwin # MacOS (Apple Silicon) - - platform: 'macos-latest' - target: 'aarch64-apple-darwin' + - platform: macos-latest + target: aarch64-apple-darwin # 64-bit Linux - - platform: 'ubuntu-22.04' - target: 'x86_64-unknown-linux-gnu' + - platform: ubuntu-22.04 + target: x86_64-unknown-linux-gnu # 64-bit Windows - - platform: 'windows-latest' - target: 'x86_64-pc-windows-msvc' + - platform: windows-latest + target: x86_64-pc-windows-msvc # 32-bit Windows - - platform: 'windows-latest' - target: 'i686-pc-windows-msvc' + - platform: windows-latest + target: i686-pc-windows-msvc runs-on: ${{ matrix.settings.platform }} steps: @@ -43,11 +43,11 @@ jobs: - run: | rustup toolchain install stable --profile minimal - rustup target add ${{ matrix.settings.target }} + rustup target add ${{ matrix.settings.target }} --toolchain stable - uses: swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894 with: - workspaces: ./packages/desktop + workspaces: packages/desktop - name: Install dependencies (Ubuntu) if: matrix.settings.platform == 'ubuntu-22.04' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 34215bf3..bdf07b68 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,4 +27,4 @@ jobs: gh-token: ${{ secrets.GITHUB_TOKEN }} gh-draft-release: false npm-publish: true - npm-package-root: 'packages/client-api' + npm-package-root: packages/client-api