Compare commits

..

No commits in common. "7dabcb71f8bd3e34f50addbe8b6cb2bfebcf5a0b" and "bf4bcebfb80f8869e57c118afb809f4932fd354a" have entirely different histories.

4 changed files with 4 additions and 15 deletions

View File

@ -61,5 +61,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)" ./ docker build -t "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)" ./song_of_the_day
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

@ -5,22 +5,11 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Improve Docker build refs NOISSUE. [Simon Diesenreiter]
0.1.18 (2025-04-15)
-------------------
Fix Fix
~~~ ~~~
- Remove broken Crontimer NuGet feed reference refs NOISSUE. [Simon - Remove broken Crontimer NuGet feed reference refs NOISSUE. [Simon
Diesenreiter] Diesenreiter]
Other
~~~~~
0.1.17 (2025-04-15) 0.1.17 (2025-04-15)
------------------- -------------------

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 --project ./song_of_the_day/song_of_the_day.csproj RUN dotnet restore
# Build and publish a release # Build and publish a release
RUN dotnet publish --project ./song_of_the_day/song_of_the_day.csproj -o out RUN dotnet publish -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

@ -1 +1 @@
0.1.19 0.1.18