Compare commits

...

2 Commits

Author SHA1 Message Date
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
4 changed files with 15 additions and 7 deletions

View File

@ -38,10 +38,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.X'
- name: Check version match
run: |
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')

View File

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

View File

@ -5,10 +5,22 @@ Changelog
(unreleased)
------------
Fix
~~~
- Remove unnecessary dotnet runtime download in CI job refs NOISSUE.
[Simon Diesenreiter]
0.1.19 (2025-04-15)
-------------------
Fix
~~~
- Improve Docker build refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.18 (2025-04-15)
-------------------

View File

@ -1 +1 @@
0.1.19
0.1.20