Skip to content

Commit dcd2121

Browse files
authored
Release 0.17 (#729)
* Update workflow. * Tidy import. * Restore workflow checks.
1 parent 1f167d7 commit dcd2121

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
include:
19-
# - os: ubuntu-latest
20-
# binary_target: x86_64-unknown-linux-gnu
21-
# platform: unknown-linux-gnu
22-
# arch: x86_64
23-
# distro: linux
24-
# variant: none
19+
- os: ubuntu-latest
20+
binary_target: x86_64-unknown-linux-gnu
21+
platform: unknown-linux-gnu
22+
arch: x86_64
23+
distro: linux
24+
variant: none
2525
- os: ubuntu-latest
2626
binary_target: x86_64-unknown-linux-musl
2727
platform: unknown-linux-musl

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ env:
1111
CHANNEL: ${{ vars.DISTRIBUTION_CHANNEL }}
1212

1313
jobs:
14-
# checks:
15-
# uses: ./.github/workflows/checks.yml
14+
checks:
15+
uses: ./.github/workflows/checks.yml
1616

1717
publish:
1818
uses: ./.github/workflows/publish.yml
19-
# needs:
20-
# - checks
19+
needs:
20+
- checks
2121
secrets: inherit
2222

2323
homebrew:
@@ -30,7 +30,6 @@ jobs:
3030
#if: ${{ false }}
3131
runs-on: ubuntu-latest
3232
needs:
33-
# - checks
3433
- publish
3534
- homebrew
3635
steps:

crates/net/src/pairing/enrollment.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ use sos_client_storage::{
99
ClientAccountStorage, ClientBaseStorage, ClientStorage,
1010
};
1111
use sos_core::{
12-
crypto::AccessKey, AccountId, Origin, Paths, PublicIdentity,
13-
RemoteOrigins,
12+
crypto::AccessKey, AccountId, Origin, PublicIdentity, RemoteOrigins,
1413
};
1514
use sos_login::device::DeviceSigner;
1615
use sos_protocol::{network_client::HttpClient, SyncClient};
@@ -57,7 +56,7 @@ impl DeviceEnrollment {
5756
match &target {
5857
BackendTarget::FileSystem(paths) => {
5958
#[cfg(debug_assertions)]
60-
Paths::scaffold(paths.documents_dir()).await?;
59+
sos_core::Paths::scaffold(paths.documents_dir()).await?;
6160
paths.ensure().await?;
6261
}
6362
BackendTarget::Database(paths, _) => {

0 commit comments

Comments
 (0)