upload-dmg

Featured

Upload the latest desktop DMG and update artifacts to install.vibesos.com. Use when the user says "upload the DMG", "update install link", "push new DMG", or "release desktop app".

Code & Development 134 stars 6 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## Upload DMG and Update Artifacts to install.vibesos.com Upload the latest built DMG and auto-updater artifacts to the install worker's R2 bucket. ### Steps 1. Read the version from plugin.json: ```bash VIBES_ROOT="${CLAUDE_PLUGIN_ROOT:-$(dirname "$(dirname "${CLAUDE_SKILL_DIR}")")}" VERSION=$(jq -r .version "$VIBES_ROOT/.claude-plugin/plugin.json") echo "Version: $VERSION" ``` 2. Verify the DMG and update artifacts exist: ```bash VIBES_ROOT="${CLAUDE_PLUGIN_ROOT:-$(dirname "$(dirname "${CLAUDE_SKILL_DIR}")")}" ARTIFACTS="$VIBES_ROOT/vibes-desktop/artifacts" DMG_PATH="$ARTIFACTS/stable-macos-arm64-VibesOS.dmg" if [ ! -f "$DMG_PATH" ]; then echo "ERROR: DMG not found at $DMG_PATH — run 'bash scripts/build-desktop.sh' first" exit 1 fi ls -lh "$DMG_PATH" # Check for update artifacts (optional — first build with baseUrl won't have them) UPDATE_JSON="$ARTIFACTS/stable-macos-arm64-update.json" UPDATE_TAR="$ARTIFACTS/stable-macos-arm64-VibesOS.app.tar.zst" [ -f "$UPDATE_JSON" ] && echo "Found: $(basename $UPDATE_JSON)" || echo "No update.json (first build?)" [ -f "$UPDATE_TAR" ] && echo "Found: $(basename $UPDATE_TAR) ($(ls -lh "$UPDATE_TAR" | awk '{print $5}'))" || echo "No .tar.zst (first build?)" PATCH_COUNT=$(ls "$ARTIFACTS"/*.patch 2>/dev/null | wc -l | tr -d ' ') echo "Patch files: $PATCH_COUNT" ``` 3. Upload the DMG: ```bash VIBES_ROOT="${CLAUDE_PLUGIN_ROOT:-$(dirname "$(dirname "${CLAUDE_SKILL_DIR}")")}" VERSION=$(jq -r .version "$VIBES_ROOT/.claude-plugin/plug...

Details

Author
popmechanic
Repository
popmechanic/VibesOS
Created
7 months ago
Last Updated
today
Language
HTML
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category