Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ jobs:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact_name: routecode-cli
asset_name: routecode-linux-x86_64
asset_name: RouteCode-cli-linux-x86_64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact_name: routecode-cli.exe
asset_name: routecode-windows-x86_64.exe
asset_name: RouteCode-cli-windows-x86_64.exe
- os: macos-latest
target: x86_64-apple-darwin
artifact_name: routecode-cli
asset_name: routecode-macos-x86_64
asset_name: RouteCode-cli-macos-x86_64
- os: macos-latest
target: aarch64-apple-darwin
artifact_name: routecode-cli
asset_name: routecode-macos-arm64
asset_name: RouteCode-cli-macos-arm64

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -126,6 +126,7 @@ jobs:
publish:
name: Publish Release
needs: [build-cli, build-desktop]
if: always() && (needs.build-cli.result == 'success' || needs.build-desktop.result == 'success')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -136,10 +137,10 @@ jobs:
path: release/
merge-multiple: true

- name: Generate CLI Checksums
- name: Generate Checksums
run: |
cd release
for f in routecode-linux-* routecode-macos-* routecode-windows-*; do
for f in RouteCode-cli-* RouteCode-desktop-t*; do
if [ -f "$f" ]; then
sha256sum "$f" >> checksums.txt
fi
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion apps/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routecode-cli"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
authors = ["SpeerX <anasrhnim07@gmail.com>"]
description = "CLI application for RouteCode"
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop-t/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "desktop-t",
"productName": "RouteCode-desktop-t",
"version": "0.1.0",
"identifier": "com.routecode.desktop-t",
"build": {
Expand Down
2 changes: 1 addition & 1 deletion libs/sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routecode-sdk"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
authors = ["SpeerX <anasrhnim07@gmail.com>"]
description = "Core logic for RouteCode"
Expand Down
Loading