Skip to content

Commit

Permalink
Develop (Merge): Bump Application Version to v0.2.1-alpha and Fix Doc…
Browse files Browse the repository at this point in the history
…kerfile and Workflow

Bump Application Version to v0.2.1-alpha and Fix Dockerfile and Workflow
  • Loading branch information
ktutak1337 authored Jul 27, 2024
2 parents 6b40fbb + c9e133f commit efeb1b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: docker/[email protected]
with:
context: .
file: docker/webapi/Dockerfile
file: docker/webapp/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion docker/webapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY ../../src/Shared src/Shared

RUN dotnet restore "./src/Server/StellarChat.Server.Api/StellarChat.Server.Api.csproj"
COPY . .
WORKDIR "/src/src/Server/StellarChat.Server.Api"
WORKDIR "/src/Server/StellarChat.Server.Api"
RUN dotnet build "./StellarChat.Server.Api.csproj" -c $BUILD_CONFIGURATION -o /app/build

FROM build AS publish
Expand Down
2 changes: 1 addition & 1 deletion src/Client/StellarChat.Client.Web/wwwroot/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"app": {
"name": "Stellar Chat",
"version": "v0.2.0-alpha",
"version": "v0.2.1-alpha",
"logoLarge": "",
"logoSmall": "https://raw.githubusercontent.com/ktutak1337/Stellar-Chat/main/docs/assets/logo-small.jpg",
"releases": "https://github.com/ktutak1337/Stellar-Chat/releases"
Expand Down
2 changes: 1 addition & 1 deletion src/Server/StellarChat.Server.Api/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"app": {
"name": "Stellar Chat",
"version": "v0.2.0-alpha"
"version": "v0.2.1-alpha"
},
"AllowedHosts": "*",
"openAI": {
Expand Down

0 comments on commit efeb1b8

Please sign in to comment.