Skip to content

Commit 419a455

Browse files
authored
chore: manual redeploy of ran (#110)
1 parent a1f74e0 commit 419a455

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.changeset/yummy-birds-help.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"ran": patch
3+
---
4+
5+
fix: manual redeploy of `ran`

.github/workflows/build-ran.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
3030
with:
3131
name: ran-linux
32-
path: ./packages/ran/out/ran*.zip
32+
path: ./packages/ran/out/**/ran-*.zip
3333
if-no-files-found: error
3434
retention-days: 1

packages/ran/assets/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ echo "📝 Creating VERSION.txt..."
134134
echo "$VERSION" > "$OUTPUT_DIR/VERSION.txt"
135135

136136
# Create final ZIP bundle
137-
ARCHIVE_NAME="ran_${VERSION}_all_platforms.zip"
137+
ARCHIVE_NAME="ran-${VERSION}-all-platforms.zip"
138138

139139
echo ""
140140
echo "📦 Creating ZIP bundle: $ARCHIVE_NAME"
141141
(
142142
cd "$OUTPUT_DIR"
143-
zip -r -9 "../$ARCHIVE_NAME" . >/dev/null
143+
zip -r -9 "$OUTPUT_DIR/$ARCHIVE_NAME" . >/dev/null
144144
)
145145

146146
echo ""

0 commit comments

Comments
 (0)