Skip to content

Commit e4db41b

Browse files
drewlinuxdevel
authored andcommitted
ci(release): restrict auto-tag to weekdays only (NVIDIA#507)
1 parent 7aaa191 commit e4db41b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/release-auto-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Release Auto-Tag
66
on:
77
workflow_dispatch: {}
88
schedule:
9-
- cron: "0 2 * * *" # 7 PM PDT
9+
- cron: "0 14 * * 1-5" # 7 AM PDT, weekdays only
1010

1111
permissions:
1212
contents: write

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ OpenShell is built agent-first. The project ships with agent skills for everythi
1414
1515
## Quickstart
1616

17-
1817
### Prerequisites
1918

2019
- **Docker** — Docker Desktop (or a Docker daemon) must be running.
@@ -33,6 +32,8 @@ curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.s
3332
uv tool install -U openshell
3433
```
3534

35+
Both methods install the latest stable release by default. To install a specific version, set `OPENSHELL_VERSION` (binary) or pin the version with `uv tool install openshell==<version>`. A [`dev` release](https://github.com/NVIDIA/OpenShell/releases/tag/dev) is also available that tracks the latest commit on `main`.
36+
3637
### Create a sandbox
3738

3839
```bash
@@ -117,7 +118,9 @@ Policies are declarative YAML files. Static sections (filesystem, process) are l
117118

118119
Agents need credentials — API keys, tokens, service accounts. OpenShell manages these as **providers**: named credential bundles that are injected into sandboxes at creation. The CLI auto-discovers credentials for recognized agents (Claude, Codex, OpenCode, Copilot) from your shell environment, or you can create providers explicitly with `openshell provider create`. Credentials never leak into the sandbox filesystem; they are injected as environment variables at runtime.
119120

120-
## GPU Support
121+
## GPU Support (Experimental)
122+
123+
> **Experimental** — GPU passthrough works on supported hosts but is under active development. Expect rough edges and breaking changes.
121124
122125
OpenShell can pass host GPUs into sandboxes for local inference, fine-tuning, or any GPU workload. Add `--gpu` when creating a sandbox:
123126

@@ -138,7 +141,7 @@ The CLI auto-bootstraps a GPU-enabled gateway on first use. GPU intent is also i
138141
| [Codex](https://developers.openai.com/codex) | [`base`](https://github.com/NVIDIA/OpenShell-Community/tree/main/sandboxes/base) | Works out of the box. Provider uses `OPENAI_API_KEY`. |
139142
| [GitHub Copilot CLI](https://docs.github.com/en/copilot/github-copilot-in-the-cli) | [`base`](https://github.com/NVIDIA/OpenShell-Community/tree/main/sandboxes/base) | Works out of the box. Provider uses `GITHUB_TOKEN` or `COPILOT_GITHUB_TOKEN`. |
140143
| [OpenClaw](https://openclaw.ai/) | [Community](https://github.com/NVIDIA/OpenShell-Community) | Launch with `openshell sandbox create --from openclaw`. |
141-
| [Ollama](https://ollama.com/) | [Community](https://github.com/NVIDIA/OpenShell-Community) | Launch with `openshell sandbox create --from ollama`. |
144+
| [Ollama](https://ollama.com/) | [Community](https://github.com/NVIDIA/OpenShell-Community) | Launch with `openshell sandbox create --from ollama`. |
142145

143146
## Key Commands
144147

0 commit comments

Comments
 (0)