Skip to content

Commit

Permalink
fix app-slug
Browse files Browse the repository at this point in the history
  • Loading branch information
atilafassina committed May 15, 2024
1 parent e4e7638 commit 9d10ba6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ on:
app-slug:
description: "The slug of your app in your CrabNebula Cloud org"
required: true
default: "super-tauri-app"
default: "pulsar"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
CN_APP_SLUG: ${{ github.event.inputs.app-slug || 'super-tauri-app' }}
CN_APP_SLUG: ${{ github.event.inputs.app-slug || 'pulsar' }}

jobs:
draft:
Expand All @@ -43,12 +43,19 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install stable toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
cache: true
cache: false

- name: install Linux dependencies
if: matrix.os == 'ubuntu-latest'
Expand Down
8 changes: 5 additions & 3 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@
mod error;
mod util;

use std::path::Path;
// use log::info;
use error::Error;
use futures::future::try_join_all;
use std::path::Path;
use util::FolderStat;

#[cfg(debug_assertions)]
use specta::collect_types;
#[cfg(debug_assertions)]
use tauri_specta::ts;
use util::FolderStat;

// use tauri_plugin_log::LogTarget;

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"identifier": "pulsar.atila.io",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
Expand Down

0 comments on commit 9d10ba6

Please sign in to comment.