Skip to content

Commit cfe9994

Browse files
committed
ready for 1.1.3-beta
1 parent 0fd8d60 commit cfe9994

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/deployer_1.1-beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ jobs:
5353
- name: Build and Push Docker image
5454
run: |
5555
# Build Docker image and tag it with the current commit SHA
56-
docker build -t ghcr.io/dcup-dev/dcup:v1.1.2-beta .
56+
docker build -t ghcr.io/dcup-dev/dcup:v1.1.3-beta .
5757
5858
# Push the image to GitHub Container Registry
59-
docker push ghcr.io/dcup-dev/dcup:v1.1.2-beta
59+
docker push ghcr.io/dcup-dev/dcup:v1.1.3-beta
6060
6161
# Optionally, tag the image with the "latest" tag for easy access
62-
docker tag ghcr.io/dcup-dev/dcup:v1.1.2-beta ghcr.io/dcup-dev/dcup:latest
62+
docker tag ghcr.io/dcup-dev/dcup:v1.1.3-beta ghcr.io/dcup-dev/dcup:latest
6363
docker push ghcr.io/dcup-dev/dcup:latest
6464
6565
- name: Logout from Docker

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source="https://github.com/Dcup-dev/dcup"
55
LABEL org.opencontainers.image.description="Dcup RAG-as-a-Service platform"
66
LABEL org.opencontainers.image.licenses="GPL-3.0"
77
LABEL org.opencontainers.image.title="Dcup RAG-as-a-Service"
8-
LABEL org.opencontainers.image.version="v1.1.2-beta"
8+
LABEL org.opencontainers.image.version="v1.1.3-beta"
99
LABEL org.opencontainers.image.authors="Ali Amer <aliamer19ali@gmail.com>"
1010
# Install required OS packages including Python
1111
RUN apk add --no-cache libc6-compat python3 py3-pip

components/nav-main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function NavMain({
3333
}) {
3434
return (
3535
<SidebarGroup>
36-
<SidebarGroupLabel>v1.1.2-beta</SidebarGroupLabel>
36+
<SidebarGroupLabel>v1.1.3-beta</SidebarGroupLabel>
3737
<SidebarMenu>
3838
{items.map((item) => (
3939
<Collapsible key={item.title} asChild defaultOpen={item.isActive}>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dcup",
3-
"version": "1.1.2-beta",
3+
"version": "1.1.3-beta",
44
"private": true,
55
"scripts": {
66
"build": "next build",

0 commit comments

Comments
 (0)