Skip to content

Commit 9ef4e7b

Browse files
committed
πŸ”§ Update configuration files πŸ”§
.github/workflows/ci.yml .github/workflows/development.yml .github/workflows/release.yml src/config/mod.rs src/ssh/connection.rs src/storage/mod.rs
1 parent add0556 commit 9ef4e7b

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ jobs:
1919

2020
- name: Build Docker image
2121
run: |
22-
docker buildx build \
22+
docker build \
2323
--tag tabssh-builder:latest \
24-
--load \
2524
-f docker/Dockerfile .
2625
2726
- name: Validate project structure

β€Ž.github/workflows/development.ymlβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ jobs:
1515

1616
- name: Build Docker image
1717
run: |
18-
docker buildx build \
19-
--platform linux/amd64,linux/arm64 \
18+
docker build \
2019
--tag tabssh-builder:latest \
21-
--load \
2220
-f docker/Dockerfile .
2321
2422
- name: Build binaries

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,11 @@ jobs:
3535
COMMIT=${{ steps.version.outputs.COMMIT }}
3636
YYMM=${{ steps.version.outputs.YYMM }}
3737
38-
docker buildx build \
39-
--platform linux/amd64,linux/arm64 \
38+
docker build \
4039
--tag tabssh-builder:${VERSION} \
4140
--tag tabssh-builder:${COMMIT} \
4241
--tag tabssh-builder:${YYMM} \
4342
--tag tabssh-builder:latest \
44-
--load \
4543
-f docker/Dockerfile .
4644
4745
- name: Run tests

β€Žsrc/config/mod.rsβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
33
mod themes;
44

5-
#[allow(unused_imports)]
6-
pub use themes::{Theme, ThemeColors, ColorTheme};
5+
pub use themes::Theme;
76

87
use serde::{Deserialize, Serialize};
98

β€Žsrc/ssh/connection.rsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ use russh::{Channel, ChannelId, Disconnect};
77
use std::sync::Arc;
88
use tokio::sync::Mutex;
99

10-
use super::ConnectionConfig;
11-
use crate::storage::database::Database;
10+
use super::{ConnectionConfig, Credentials};
11+
use crate::storage::database;
1212

1313
/// Host key information for verification
1414
#[derive(Debug, Clone)]

β€Žsrc/storage/mod.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Storage module - database and persistence
22
3-
mod database;
3+
pub mod database;
44

55
pub use database::Database;

0 commit comments

Comments
Β (0)