Skip to content

documentation updates #2142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
541 changes: 541 additions & 0 deletions .clinerules

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & release sidecar
name: Build & release larp

on:
workflow_dispatch:
Expand Down Expand Up @@ -166,9 +166,9 @@ jobs:
# Create zip file
Push-Location staging
if ($env:RUNNER_OS -eq "Windows") {
Compress-Archive -Path * -DestinationPath ../sidecar.zip -Force
Compress-Archive -Path * -DestinationPath ../larp.zip -Force
} else {
zip -r ../sidecar.zip .
zip -r ../larp.zip .
}
Pop-Location

Expand Down Expand Up @@ -211,16 +211,16 @@ jobs:
echo "ARCH: ${ARCH}"
echo "CARGO_PKG_VERSION: ${CARGO_PKG_VERSION}"

SPECIFIC_VERSION_PATH="${CARGO_PKG_VERSION}/${OS_NAME}/${ARCH}/sidecar.zip"
LATEST_VERSION_PATH="latest/${OS_NAME}/${ARCH}/sidecar.zip"
SPECIFIC_VERSION_PATH="${CARGO_PKG_VERSION}/${OS_NAME}/${ARCH}/larp.zip"
LATEST_VERSION_PATH="latest/${OS_NAME}/${ARCH}/larp.zip"

echo "Paths:"
echo "SPECIFIC_VERSION_PATH: ${SPECIFIC_VERSION_PATH}"
echo "LATEST_VERSION_PATH: ${LATEST_VERSION_PATH}"

# Verify file exists
ls -l "./sidecar.zip"
ls -l "./larp.zip"

# Copy with verbose flag
gsutil cp "./sidecar.zip" "gs://sidecar-bin/${SPECIFIC_VERSION_PATH}"
gsutil cp "./sidecar.zip" "gs://sidecar-bin/${LATEST_VERSION_PATH}"
gsutil cp "./larp.zip" "gs://larp-bin/${SPECIFIC_VERSION_PATH}"
gsutil cp "./larp.zip" "gs://larp-bin/${LATEST_VERSION_PATH}"
Loading