mirror of
https://github.com/cinnyapp/cinny-desktop.git
synced 2025-02-17 18:50:05 +00:00
Update tauri.yml
This commit is contained in:
parent
53af21c567
commit
97a037d35f
118
.github/workflows/tauri.yml
vendored
118
.github/workflows/tauri.yml
vendored
|
@ -177,69 +177,69 @@ jobs:
|
||||||
src-tauri/target/release/bundle/macos/Cinny_desktop-x86_64.app.tar.gz.sig
|
src-tauri/target/release/bundle/macos/Cinny_desktop-x86_64.app.tar.gz.sig
|
||||||
|
|
||||||
# macos-aarch64
|
# macos-aarch64
|
||||||
# macos-aarch64:
|
macos-aarch64:
|
||||||
# runs-on: macos-12
|
runs-on: macos-13-arm64
|
||||||
# steps:
|
steps:
|
||||||
# - name: Checkout repository
|
- name: Checkout repository
|
||||||
# uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v3.5.3
|
||||||
# with:
|
with:
|
||||||
# submodules: true
|
submodules: true
|
||||||
# - name: Get release
|
- name: Get release
|
||||||
# id: get_release
|
id: get_release
|
||||||
# uses: bruceadams/get-release@74c3d60f5a28f358ccf241a00c9021ea16f0569f
|
uses: bruceadams/get-release@74c3d60f5a28f358ccf241a00c9021ea16f0569f
|
||||||
# env:
|
env:
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# - name: Setup node
|
- name: Setup node
|
||||||
# uses: actions/setup-node@v3.4.1
|
uses: actions/setup-node@v3.4.1
|
||||||
# with:
|
with:
|
||||||
# node-version: 18.12.1
|
node-version: 18.12.1
|
||||||
# cache: 'npm'
|
cache: 'npm'
|
||||||
# - name: Install Rust stable
|
- name: Install Rust stable
|
||||||
# uses: actions-rs/toolchain@v1.0.7
|
uses: actions-rs/toolchain@v1.0.7
|
||||||
# with:
|
with:
|
||||||
# toolchain: stable
|
toolchain: stable
|
||||||
# - name: Install cinny dependencies
|
- name: Install cinny dependencies
|
||||||
# run: cd cinny && npm ci
|
run: cd cinny && npm ci
|
||||||
# - name: Install tauri dependencies
|
- name: Install tauri dependencies
|
||||||
# run: npm ci
|
run: npm ci
|
||||||
# - name: Install rustup target aarch64 darwin
|
- name: Install rustup target aarch64 darwin
|
||||||
# run: rustup target add aarch64-apple-darwin
|
run: rustup target add aarch64-apple-darwin
|
||||||
# - name: Build desktop app with Tauri
|
- name: Build desktop app with Tauri
|
||||||
# uses: tauri-apps/tauri-action@v0.4.4
|
uses: tauri-apps/tauri-action@v0.4.4
|
||||||
# env:
|
env:
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
||||||
# TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
||||||
# NODE_OPTIONS: "--max_old_space_size=4096"
|
NODE_OPTIONS: "--max_old_space_size=4096"
|
||||||
# with:
|
with:
|
||||||
# args: --target aarch64-apple-darwin
|
args: --target aarch64-apple-darwin
|
||||||
# releaseId: ${{ steps.get_release.outputs.upload_url }}
|
releaseId: ${{ steps.get_release.outputs.upload_url }}
|
||||||
# - name: Get app version
|
- name: Get app version
|
||||||
# if: always()
|
if: always()
|
||||||
# id: vars
|
id: vars
|
||||||
# run: echo ::set-output name=tag::$(jq .package.version src-tauri/tauri.conf.json | tr -d '"')
|
run: echo ::set-output name=tag::$(jq .package.version src-tauri/tauri.conf.json | tr -d '"')
|
||||||
# - name: Move dmg
|
- name: Move dmg
|
||||||
# if: always()
|
if: always()
|
||||||
# run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_${{ steps.vars.outputs.tag }}_aarch64.dmg" "src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_desktop-aarch64.dmg"
|
run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_${{ steps.vars.outputs.tag }}_aarch64.dmg" "src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_desktop-aarch64.dmg"
|
||||||
# - name: Move app.tar.gz
|
- name: Move app.tar.gz
|
||||||
# if: always()
|
if: always()
|
||||||
# run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny.app.tar.gz" "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.app.tar.gz"
|
run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny.app.tar.gz" "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.app.tar.gz"
|
||||||
# - name: Move app.tar.gz.sig
|
- name: Move app.tar.gz.sig
|
||||||
# if: always()
|
if: always()
|
||||||
# run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny.app.tar.gz.sig" "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.app.tar.gz.sig"
|
run: mv "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny.app.tar.gz.sig" "src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.app.tar.gz.sig"
|
||||||
# - name: Upload tagged release
|
- name: Upload tagged release
|
||||||
# if: always()
|
if: always()
|
||||||
# uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
||||||
# with:
|
with:
|
||||||
# files: |
|
files: |
|
||||||
# src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_desktop-aarch64.dmg
|
src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/Cinny_desktop-aarch64.dmg
|
||||||
# src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.tar.gz
|
src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.tar.gz
|
||||||
# src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.tar.gz.sig
|
src-tauri/target/aarch64-apple-darwin/release/bundle/macos/Cinny_desktop-aarch64.tar.gz.sig
|
||||||
|
|
||||||
# Upload release.json
|
# Upload release.json
|
||||||
release-update:
|
release-update:
|
||||||
if: always()
|
if: always()
|
||||||
needs: [windows-x86_64, linux-x86_64, macos-x86_64] #, macos-aarch64]
|
needs: [windows-x86_64, linux-x86_64, macos-x86_64, macos-aarch64]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
Loading…
Reference in a new issue