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
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Build and publish scilaxy-relay server-side images to ghcr.io.
# Build and publish liyanlabs-relay server-side images to ghcr.io.
#
# Triggers:
# - push to main → push :main + :sha tags
# - tag v* → push :sha + :v* + :latest tags
# - workflow_dispatch → manual run
#
# We deliberately publish under ghcr.io/scienceol/scilaxy-relay-* so
# We deliberately publish under ghcr.io/scienceol/liyanlabs-relay-* so
# any cluster (or any developer) can `docker pull` without auth — the
# repo itself is public. The k8s manifests pin to a specific :sha or
# :v* tag so a "latest" rolling deploy never happens by accident.
#
# What's NOT here: the desktop-side capturer (mac-capturer + capturer
# crates). Those compile only on macOS and ship inside the Scilaxy
# crates). Those compile only on macOS and ship inside the LiyanLabs
# runner binary via the runner repo's own release pipeline.

name: release
Expand All @@ -33,7 +33,7 @@ permissions:

env:
REGISTRY: ghcr.io
IMAGE_PREFIX: ghcr.io/scienceol/scilaxy-relay
IMAGE_PREFIX: ghcr.io/scienceol/liyanlabs-relay

jobs:
test:
Expand All @@ -51,8 +51,8 @@ jobs:
# missing Apple frameworks.
run: |
cargo check --workspace \
--exclude scilaxy-relay-mac-capturer \
--exclude scilaxy-relay-capturer
--exclude liyanlabs-relay-mac-capturer \
--exclude liyanlabs-relay-capturer
- name: cargo clippy (informational)
# Run clippy purely for visibility — never gate the pipeline
# on it. Real lint cleanup happens in standalone PRs once
Expand All @@ -61,13 +61,13 @@ jobs:
continue-on-error: true
run: |
cargo clippy --workspace \
--exclude scilaxy-relay-mac-capturer \
--exclude scilaxy-relay-capturer || true
--exclude liyanlabs-relay-mac-capturer \
--exclude liyanlabs-relay-capturer || true
- name: cargo test
run: |
cargo test --workspace \
--exclude scilaxy-relay-mac-capturer \
--exclude scilaxy-relay-capturer
--exclude liyanlabs-relay-mac-capturer \
--exclude liyanlabs-relay-capturer

build-and-push:
name: build ${{ matrix.bin }}
Expand Down
268 changes: 134 additions & 134 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
repository = "https://github.com/scienceol/scilaxy-relay"
repository = "https://github.com/scienceol/liyanlabs-relay"

[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
Expand Down
Loading
Loading