Compare commits

8 Commits

Author SHA1 Message Date
Simon Diesenreiter
9fe4613be7 release: version 0.1.21 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 25s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Build Docker image / deploy (push) Successful in 2m20s
2025-04-15 15:33:04 +02:00
Simon Diesenreiter
a09e27281e fix: fix new user saving refs NOISSUE 2025-04-15 15:33:02 +02:00
Simon Diesenreiter
8417003ea7 release: version 0.1.20 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Build Docker image / Create Release (push) Successful in 20s
Build Docker image / deploy (push) Successful in 1m32s
2025-04-15 15:24:51 +02:00
Simon Diesenreiter
8412cc13df fix: remove unnecessary dotnet runtime download in CI job refs NOISSUE 2025-04-15 15:24:47 +02:00
Simon Diesenreiter
7dabcb71f8 release: version 0.1.19 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Build Docker image / Create Release (push) Successful in 19s
Build Docker image / deploy (push) Failing after 1m56s
2025-04-15 15:18:40 +02:00
Simon Diesenreiter
001711487c fix: improve Docker build refs NOISSUE 2025-04-15 15:18:37 +02:00
Simon Diesenreiter
bf4bcebfb8 release: version 0.1.18 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Build Docker image / Create Release (push) Successful in 12s
Build Docker image / deploy (push) Failing after 1m48s
2025-04-15 15:10:23 +02:00
Simon Diesenreiter
0561eb757c fix: remove broken Crontimer NuGet feed reference refs NOISSUE 2025-04-15 15:10:18 +02:00
6 changed files with 51 additions and 9 deletions

View File

@@ -38,10 +38,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.X'
- name: Check version match - name: Check version match
run: | run: |
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_') REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
@@ -61,5 +57,5 @@ jobs:
run: | run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}' | tr '[:upper:]' '[:lower:]') REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}' | tr '[:upper:]' '[:lower:]')
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_') REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
docker build -t "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)" ./song_of_the_day docker build -t "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)" ./
docker push "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)" docker push "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)"

View File

@@ -4,9 +4,9 @@ WORKDIR /App
# Copy everything # Copy everything
COPY . ./ COPY . ./
# Restore as distinct layers # Restore as distinct layers
RUN dotnet restore RUN dotnet restore ./song_of_the_day/song_of_the_day.csproj
# Build and publish a release # Build and publish a release
RUN dotnet publish -o out RUN dotnet publish ./song_of_the_day/song_of_the_day.csproj -o out
# Build runtime image # Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:9.0 FROM mcr.microsoft.com/dotnet/aspnet:9.0

View File

@@ -5,10 +5,56 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Fix new user saving refs NOISSUE. [Simon Diesenreiter]
0.1.20 (2025-04-15)
-------------------
Fix
~~~
- Remove unnecessary dotnet runtime download in CI job refs NOISSUE.
[Simon Diesenreiter]
Other
~~~~~
0.1.19 (2025-04-15)
-------------------
Fix
~~~
- Improve Docker build refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.18 (2025-04-15)
-------------------
Fix
~~~
- Remove broken Crontimer NuGet feed reference refs NOISSUE. [Simon
Diesenreiter]
Other
~~~~~
0.1.17 (2025-04-15)
-------------------
Fix Fix
~~~ ~~~
- Remove uinnecessary NuGet login refs NOISSUE. [Simon Diesenreiter] - Remove uinnecessary NuGet login refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.16 (2025-04-15) 0.1.16 (2025-04-15)
------------------- -------------------

View File

@@ -33,6 +33,7 @@ userCheckTimer.OnOccurence += async (s, ea) =>
NickName = string.Empty, NickName = string.Empty,
IsIntroduced = false IsIntroduced = false
}; };
dci.Users.Add(newUser);
needsSaving = true; needsSaving = true;
} }
} }

View File

@@ -1 +1 @@
0.1.17 0.1.21

View File

@@ -16,7 +16,6 @@
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" /> <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
<PackageReference Include="NSwag.ApiDescription.Client" Version="13.0.5" /> <PackageReference Include="NSwag.ApiDescription.Client" Version="13.0.5" />
<PackageReference Include="Scalar.AspNetCore" Version="2.1.*" /> <PackageReference Include="Scalar.AspNetCore" Version="2.1.*" />
<PackageReference Include="CronTimer" Version="2.0.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<OpenApiReference Include="swagger.json" SourceUrl="https://bbernhard.github.io/signal-cli-rest-api/src/docs/swagger.json" /> <OpenApiReference Include="swagger.json" SourceUrl="https://bbernhard.github.io/signal-cli-rest-api/src/docs/swagger.json" />