Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 280eea7

Browse files
committed
ci(release): use current repo for publishing
1 parent c97779f commit 280eea7

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Test
7474
# Skip tests that depend on macOS Keychain / Linux keyring or Unix path semantics.
7575
# These are covered by ubuntu-latest and macos-latest jobs.
76-
# See https://github.com/steipete/gogcli/issues/395
76+
# See https://github.com/openclaw/gogcli/issues/395
7777
run: make test
7878
shell: bash
7979
env:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: meta
4949
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
5050
with:
51-
images: ghcr.io/steipete/gogcli
51+
images: ghcr.io/${{ github.repository }}
5252
tags: |
5353
type=ref,event=pr
5454
type=ref,event=tag

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
--ref main \
114114
-f formula=gogcli \
115115
-f tag="$RELEASE_TAG" \
116-
-f repository=steipete/gogcli \
116+
-f repository=${{ github.repository }} \
117117
-f artifact_template="{formula}_{version}_{target}.tar.gz" \
118118
-f request_id="$request_id"
119119

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gog --version
2626
### Docker
2727

2828
```bash
29-
docker run --rm ghcr.io/steipete/gogcli:latest version
29+
docker run --rm ghcr.io/openclaw/gogcli:latest version
3030
```
3131

3232
Authenticated container runs should use a persistent config volume and the
@@ -39,21 +39,21 @@ docker run --rm -it \
3939
-e GOG_KEYRING_BACKEND=file \
4040
-e GOG_KEYRING_PASSWORD \
4141
-v gogcli-config:/home/gog/.config/gogcli \
42-
ghcr.io/steipete/gogcli:latest \
42+
ghcr.io/openclaw/gogcli:latest \
4343
auth add [email protected] --services gmail,calendar,drive
4444
```
4545

4646
### Windows
4747

4848
Download `gogcli_<version>_windows_amd64.zip` or
4949
`gogcli_<version>_windows_arm64.zip` from the
50-
[latest release](https://github.com/steipete/gogcli/releases), extract
50+
[latest release](https://github.com/openclaw/gogcli/releases), extract
5151
`gog.exe`, and put that directory on `PATH`.
5252

5353
### Build from source
5454

5555
```bash
56-
git clone https://github.com/steipete/gogcli.git
56+
git clone https://github.com/openclaw/gogcli.git
5757
cd gogcli
5858
make
5959
./bin/gog --version

docs/RELEASING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ scripts/verify-release.sh X.Y.Z
1515
```
1616

1717
Assumptions:
18-
- Repo: `steipete/gogcli`
18+
- Repo: `openclaw/gogcli`
1919
- Tap repo: `../homebrew-tap` (tap: `steipete/tap`)
2020
- Homebrew formula name: `gogcli` (installs the `gog` binary)
2121

@@ -81,22 +81,22 @@ In the tap repo (assumed sibling at `../homebrew-tap`), create/update `Formula/g
8181

8282
Recommended formula shape (download GitHub release assets; preserves macOS code signature):
8383
- `version "X.Y.Z"`
84-
- `url "https://github.com/steipete/gogcli/releases/download/vX.Y.Z/gogcli_X.Y.Z_darwin_arm64.tar.gz"` (or `darwin_amd64`)
84+
- `url "https://github.com/openclaw/gogcli/releases/download/vX.Y.Z/gogcli_X.Y.Z_darwin_arm64.tar.gz"` (or `darwin_amd64`)
8585
- `sha256 "<sha256>"`
8686
- Install:
8787
- `bin.install "gog"`
8888

8989
Alternative (build-from-source; macOS binary will be ad-hoc signed, which can trigger repeated Keychain prompts with `KeychainTrustApplication`):
9090
- `version "X.Y.Z"`
91-
- `url "https://github.com/steipete/gogcli/archive/refs/tags/vX.Y.Z.tar.gz"`
91+
- `url "https://github.com/openclaw/gogcli/archive/refs/tags/vX.Y.Z.tar.gz"`
9292
- `sha256 "<sha256>"`
9393
- `depends_on "go" => :build`
9494
- Build:
9595
- `system "go", "build", *std_go_args(ldflags: "-s -w"), "./cmd/gog"`
9696

9797
Compute the SHA256 for the tag tarball:
9898
```sh
99-
curl -L -o /tmp/gogcli.tar.gz https://github.com/steipete/gogcli/archive/refs/tags/vX.Y.Z.tar.gz
99+
curl -L -o /tmp/gogcli.tar.gz https://github.com/openclaw/gogcli/archive/refs/tags/vX.Y.Z.tar.gz
100100
shasum -a 256 /tmp/gogcli.tar.gz
101101
```
102102

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ gog slides create-from-markdown "Weekly update" --content-file slides.md
4545
## Pick your path
4646

4747
- **Trying it.** [Install](install.md)[Quickstart](quickstart.md). Five minutes from `brew install` to your first authenticated query.
48-
- **Wiring up an agent.** [Safety Profiles](safety-profiles.md) and the bundled [`gog` agent skill](https://github.com/steipete/gogcli/blob/main/.agents/skills/gog/SKILL.md). Lock the binary down before handing it to a model.
48+
- **Wiring up an agent.** [Safety Profiles](safety-profiles.md) and the bundled [`gog` agent skill](https://github.com/openclaw/gogcli/blob/main/.agents/skills/gog/SKILL.md). Lock the binary down before handing it to a model.
4949
- **Running Workspace at scale.** [Auth Clients](auth-clients.md) for service accounts, named OAuth clients, and domain-wide delegation.
5050
- **Managing Workspace.** [Workspace Admin](workspace-admin.md) covers user creation, cleanup, organizational units, and group administration.
5151
- **Backing up an account.** [Backup](backup.md) before pointing `gog backup push` at a busy mailbox.
5252
- **Looking up a flag.** The [Command Index](commands/) has a generated page for every subcommand.
5353

5454
## Project
5555

56-
Active development; the [changelog](https://github.com/steipete/gogcli/blob/main/CHANGELOG.md) tracks what shipped recently. Goals and non-goals live in the [spec](spec.md). Released under the [MIT license](https://github.com/steipete/gogcli/blob/main/LICENSE). Not affiliated with Google.
56+
Active development; the [changelog](https://github.com/openclaw/gogcli/blob/main/CHANGELOG.md) tracks what shipped recently. Goals and non-goals live in the [spec](spec.md). Released under the [MIT license](https://github.com/openclaw/gogcli/blob/main/LICENSE). Not affiliated with Google.

docs/install.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ gog --version
2323
Release tags publish a non-root GitHub Container Registry image:
2424

2525
```bash
26-
docker run --rm ghcr.io/steipete/gogcli:latest version
27-
docker run --rm ghcr.io/steipete/gogcli:v0.15.0 version
26+
docker run --rm ghcr.io/openclaw/gogcli:latest version
27+
docker run --rm ghcr.io/openclaw/gogcli:v0.15.0 version
2828
```
2929

3030
Authenticated container runs should mount a persistent config directory and
@@ -37,7 +37,7 @@ docker run --rm -it \
3737
-e GOG_KEYRING_BACKEND=file \
3838
-e GOG_KEYRING_PASSWORD \
3939
-v gogcli-config:/home/gog/.config/gogcli \
40-
ghcr.io/steipete/gogcli:latest \
40+
ghcr.io/openclaw/gogcli:latest \
4141
auth add [email protected] --services gmail,calendar,drive
4242
```
4343

@@ -80,7 +80,7 @@ help when `gog auth doctor --check` already shows readable tokens in the shell.
8080
## Windows
8181

8282
Download the matching ZIP from the
83-
[latest release](https://github.com/steipete/gogcli/releases):
83+
[latest release](https://github.com/openclaw/gogcli/releases):
8484

8585
- `gogcli_<version>_windows_amd64.zip`
8686
- `gogcli_<version>_windows_arm64.zip`
@@ -99,13 +99,13 @@ Release assets are uploaded by GoReleaser:
9999
- `gogcli_<version>_windows_arm64.zip`
100100
- `checksums.txt`
101101

102-
Browse the [releases page](https://github.com/steipete/gogcli/releases) for
102+
Browse the [releases page](https://github.com/openclaw/gogcli/releases) for
103103
the latest tag and the full asset list.
104104

105105
## Build from source
106106

107107
```bash
108-
git clone https://github.com/steipete/gogcli.git
108+
git clone https://github.com/openclaw/gogcli.git
109109
cd gogcli
110110
make
111111
./bin/gog --version
@@ -139,7 +139,7 @@ keyring health, refresh-token validity, and Workspace-specific failure modes.
139139
## Updating
140140

141141
- **Homebrew:** `brew upgrade gogcli`.
142-
- **Docker:** pull a new tag (`ghcr.io/steipete/gogcli:vX.Y.Z`).
142+
- **Docker:** pull a new tag (`ghcr.io/openclaw/gogcli:vX.Y.Z`).
143143
- **GitHub release archives:** download the new tarball/ZIP and replace the
144144
binary.
145145
- **Source builds:** `git pull && make` — the version string comes from

0 commit comments

Comments
 (0)