Skip to content

Commit

Permalink
chore(release): 0.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys authored Mar 21, 2024
1 parent 3f9c6c1 commit 59fe45d
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 11 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cli-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
# TODO: Implement
# TODO: Implement https://github.com/doseiai/dosei/issues/62
# - os: ubuntu-latest
# target: aarch64-unknown-linux-gnu
- os: macos-latest
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Upload Zip
uses: actions/upload-artifact@v4
with:
name: dosei
name: dosei-${{ matrix.target }}
path: dosei-${{ matrix.target }}.zip

release:
Expand All @@ -74,7 +74,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: dosei
pattern: dosei-*
merge-multiple: true
- name: Release
uses: softprops/action-gh-release@v2
with:
Expand Down
69 changes: 64 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ once_cell = "1.19.0"
home = "0.5.9"
flate2 = "1.0.28"
tar = "0.4.40"
reqwest = { version = "0.11.23", features = ["blocking", "json", "multipart"] }
reqwest = { version = "0.12", features = ["blocking", "json", "multipart"] }
sysinfo = { version = "0.30.5" }
webbrowser = { version = "0.8.12" }
tiny_http = { version = "0.12.0" }
ignore = { version = "0.4.22" }
regex = "1.10.3"
git2 = "0.18.1"
git2 = { version = "0.18.1",features = ["vendored-openssl"] }
tempfile = "3.10.1"
2 changes: 1 addition & 1 deletion doseid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ instant-acme = "0.4.2"
cached = "0.49.2"
trust-dns-resolver = "0.23.2"
rcgen = "0.12.1"
openssl = { version = "0.10.64",features = ["vendored"] }
openssl = { version = "0.10", features = ["vendored"] }

[dev-dependencies]
futures = "0.3.30"

0 comments on commit 59fe45d

Please sign in to comment.