@@ -35,6 +35,6 @@ jobs:
run: |
git config user.name "github-actions"
git config user.email "github-actions@github.com"
- git add CommandIndex.md Commands.md
+ git add Shared.Rcl/wwwroot/raw_docs/CommandIndex.md Shared.Rcl/wwwroot/raw_docs/Commands.md
git commit -m "Update CLI docs" || echo "No changes to commit"
git push
@@ -3,5 +3,5 @@ namespace RackPeek.Domain;
public static class RpkConstants {
public const string Version = "v1.4.0";
- public static bool HasGitServices = false;
+ public static bool HasGitServices { get; set; }
}
@@ -105,13 +105,6 @@ Build Web image (required before running tests):
```bash
docker build -t rackpeek:ci -f RackPeek.Web/Dockerfile .
-
-docker buildx build \
- --platform linux/amd64,linux/arm64 \
- -f ./Dockerfile \
- -t aptacode/rackpeek-qa:latest \
- --push ..
```
---
@@ -1,8 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
-PROJECT_PATH="."
-OUTPUT_FILE="COMMANDS.md"
declare -A VISITED
TREE_TEMP=$(mktemp)