Skip to content

Commit

Permalink
fix: rename from studio-extension to ai-studio
Browse files Browse the repository at this point in the history
OCI image is also renamed and main branch is published as nightly

Fixes #124

Signed-off-by: Jeff MAURY <[email protected]>
  • Loading branch information
jeffmaury committed Jan 26, 2024
1 parent 9dd52d4 commit 9f84567
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ jobs:
- name: Publish Image
id: publish-image
run: |
IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/studio-extension
IMAGE_LATEST=${IMAGE_NAME}:latest
IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/ai-studio
IMAGE_NIGHTLY=${IMAGE_NAME}:nightly
IMAGE_SHA=${IMAGE_NAME}:${GITHUB_SHA}
podman build -t $IMAGE_LATEST .
podman push $IMAGE_LATEST
podman tag $IMAGE_LATEST $IMAGE_SHA
podman build -t $IMAGE_NIGHTLY .
podman push $IMAGE_NIGHTLY
podman tag $IMAGE_NIGHTLY $IMAGE_SHA
podman push $IMAGE_SHA
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# studio extension
# AI studio

## Installing a development version

You can install this extension from Podman Desktop UI > ⚙ Settings > Extensions > Install a new extension from OCI Image.

The name of the image to use is `ghcr.io/projectatomic/studio-extension:latest`.
The name of the image to use is `ghcr.io/projectatomic/ai-studio:latest`.

You can get earlier tags for the image at https://github.com/projectatomic/studio-extension/pkgs/container/studio-extension.
You can get earlier tags for the image at https://github.com/projectatomic/studio-extension/pkgs/container/ai-studio.

These images contain development versions of the extension. There is no stable release yet.

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "studio-extension-monorepo",
"displayName": "studio-extension-monorepo",
"description": "studio-extension-monorepo",
"name": "ai-studio-monorepo",
"displayName": "ai-studio-monorepo",
"description": "ai-studio-monorepo",
"publisher": "redhat",
"version": "0.0.0",
"private": true,
Expand Down
6 changes: 3 additions & 3 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "studio-extension",
"displayName": "studio extension",
"description": "Podman Desktop Studio Extension",
"name": "ai-studio",
"displayName": "AI Studio",
"description": "Podman Desktop AI Studio",
"version": "0.1.0-next",
"icon": "icon.png",
"publisher": "redhat",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend-app",
"displayName": "UI for studio extension",
"displayName": "UI for AI Studio",
"version": "0.1.0-next",
"type": "module",
"scripts": {
Expand Down

0 comments on commit 9f84567

Please sign in to comment.