Skip to content

Commit 496396f

Browse files
committed
docs: use latest tag in examples
1 parent 3e0fe75 commit 496396f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/site/docs/usage.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jalapeno push my-recipe ghcr.io/my-user/my-recipe
163163
After this, you should be able to see the recipe in the Container registry from the UI or by running:
164164

165165
```bash
166-
docker inspect ghcr.io/my-user/my-recipe:v0.0.0
166+
docker inspect ghcr.io/my-user/my-recipe:latest
167167
```
168168

169169
:::note
@@ -178,14 +178,14 @@ You can execute a recipe directly from Container registry by using the `jalapeno
178178

179179
```bash
180180
mkdir my-project && cd my-project
181-
jalapeno execute oci://ghcr.io/my-user/my-recipe:v0.0.0
181+
jalapeno execute oci://ghcr.io/my-user/my-recipe:latest
182182
```
183183

184184
Another way is to pull the recipe first on your local machine and then execute it:
185185

186186
```bash
187187
mkdir my-project && cd my-project
188-
jalapeno pull oci://ghcr.io/my-user/my-recipe:v0.0.0
188+
jalapeno pull oci://ghcr.io/my-user/my-recipe:latest
189189
jalapeno execute my-recipe
190190
```
191191

@@ -234,7 +234,7 @@ jalapeno check --recipe my-recipe --from oci://ghcr.io/my-user/my-recipe
234234

235235
:::tip
236236

237-
If you want to run the check in a CI/CD pipeline (like Github Actions), you can check the [`examples/github-action`](https://github.com/futurice/jalapeno/tree/main/examples/github-action) recipe on how to do it or you can execute it in your project with `jalapeno execute oci://ghcr.io/futurice/jalapeno/examples/github-action:v0.0.0`.
237+
If you want to run the check in a CI/CD pipeline (like Github Actions), you can check the [`examples/github-action`](https://github.com/futurice/jalapeno/tree/main/examples/github-action) recipe on how to do it or you can execute it in your project with `jalapeno execute oci://ghcr.io/futurice/jalapeno/examples/github-action:latest`.
238238

239239
:::
240240

0 commit comments

Comments
 (0)