Skip to content

Commit 230578d

Browse files
committed
Fix repo name references and release workflow binary name
All URLs pointed to whoisyurii/microtask but the repo is whoisyurii/microtaskrr. Also fix release workflow to package the binary as microtaskrr-TARGET instead of microtask-TARGET.
1 parent ee8262f commit 230578d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
4646
- name: Package binary
4747
run: |
48-
cp src-tauri/target/${{ matrix.target }}/release/microtask microtask-${{ matrix.target }}
49-
chmod +x microtask-${{ matrix.target }}
48+
cp src-tauri/target/${{ matrix.target }}/release/microtaskrr microtaskrr-${{ matrix.target }}
49+
chmod +x microtaskrr-${{ matrix.target }}
5050
5151
- name: Upload artifact
5252
uses: actions/upload-artifact@v4
5353
with:
54-
name: microtask-${{ matrix.target }}
55-
path: microtask-${{ matrix.target }}
54+
name: microtaskrr-${{ matrix.target }}
55+
path: microtaskrr-${{ matrix.target }}
5656

5757
release:
5858
needs: build

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ More games coming — this project is actively expanding.
3636
## Install (one command)
3737

3838
```bash
39-
curl -fsSL https://raw.githubusercontent.com/whoisyurii/microtask/main/install.sh | bash
39+
curl -fsSL https://raw.githubusercontent.com/whoisyurii/microtaskrr/main/install.sh | bash
4040
```
4141

4242
This will:
@@ -60,7 +60,7 @@ You can **pause** it by choosing "Sleep for..." from the tray menu (30 min, 1 h,
6060
Requires [Rust](https://rustup.rs) and [Node.js](https://nodejs.org) 18+.
6161

6262
```bash
63-
git clone https://github.com/whoisyurii/microtask.git && cd microtask
63+
git clone https://github.com/whoisyurii/microtaskrr.git && cd microtask
6464
npm install
6565
npm run build
6666
cd src-tauri && cargo build --release && cd ..
@@ -135,7 +135,7 @@ Claude Code CLI microtaskrr (Tauri app)
135135
## Uninstall
136136

137137
```bash
138-
curl -fsSL https://raw.githubusercontent.com/whoisyurii/microtask/main/uninstall.sh | bash
138+
curl -fsSL https://raw.githubusercontent.com/whoisyurii/microtaskrr/main/uninstall.sh | bash
139139
```
140140

141141
Or manually:

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
set -euo pipefail
33

44
# microtaskrr installer
5-
# Usage: curl -fsSL https://raw.githubusercontent.com/YOURNAME/microtask/main/install.sh | bash
5+
# Usage: curl -fsSL https://raw.githubusercontent.com/whoisyurii/microtaskrr/main/install.sh | bash
66

7-
REPO="whoisyurii/microtask"
7+
REPO="whoisyurii/microtaskrr"
88
INSTALL_DIR="$HOME/.local/bin"
99
BINARY_NAME="microtaskrr"
1010
SETTINGS_FILE="$HOME/.claude/settings.json"
@@ -45,7 +45,7 @@ LATEST_URL=$(curl -fsSL "https://api.github.com/repos/$REPO/releases/latest" \
4545
if [ -z "$LATEST_URL" ]; then
4646
echo " ✗ Could not find a release for $TARGET."
4747
echo " → You can build from source instead:"
48-
echo " git clone https://github.com/$REPO && cd microtask"
48+
echo " git clone https://github.com/$REPO && cd microtaskrr"
4949
echo " npm install && npx tauri build"
5050
exit 1
5151
fi

0 commit comments

Comments
 (0)