diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2373d827..e07e615c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,10 +1,10 @@ -name: 'Publish' +name: "Publish" on: workflow_dispatch env: CARGO_INCREMENTAL: 0 RUST_BACKTRACE: short - RUSTFLAGS: '-W unreachable-pub -W rust-2021-compatibility' + RUSTFLAGS: "-W unreachable-pub -W rust-2021-compatibility" jobs: publish-tauri: @@ -12,12 +12,12 @@ jobs: fail-fast: false matrix: settings: - - platform: 'macos-latest' - args: '--target universal-apple-darwin' - - platform: 'ubuntu-22.04' - args: '' - - platform: 'windows-latest' - args: '--target x86_64-pc-windows-msvc' + - platform: "macos-latest" + args: "--target universal-apple-darwin" + #- platform: 'ubuntu-22.04' + # args: '' + #- platform: 'windows-latest' + # args: '--target x86_64-pc-windows-msvc' runs-on: ${{ matrix.settings.platform }} steps: - uses: actions/checkout@v3 @@ -41,8 +41,8 @@ jobs: - name: Setup node and cache for package data uses: actions/setup-node@v3 with: - node-version: 'lts/*' - cache: 'pnpm' + node-version: "lts/*" + cache: "pnpm" cache-dependency-path: pnpm-lock.yaml - uses: Swatinem/rust-cache@v2 with: @@ -62,8 +62,8 @@ jobs: APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} with: tagName: v__VERSION__ - releaseName: 'v__VERSION__' - releaseBody: 'See the assets to download this version and install.' + releaseName: "v__VERSION__" + releaseBody: "See the assets to download this version and install." releaseDraft: true prerelease: false args: ${{ matrix.settings.args }}