Compare commits
No commits in common. "8417003ea736838a77aee9173106278a641d3435" and "7dabcb71f8bd3e34f50addbe8b6cb2bfebcf5a0b" have entirely different histories.
8417003ea7
...
7dabcb71f8
@ -38,6 +38,10 @@ 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 '-' '_')
|
||||||
|
@ -4,9 +4,9 @@ WORKDIR /App
|
|||||||
# Copy everything
|
# Copy everything
|
||||||
COPY . ./
|
COPY . ./
|
||||||
# Restore as distinct layers
|
# Restore as distinct layers
|
||||||
RUN dotnet restore ./song_of_the_day/song_of_the_day.csproj
|
RUN dotnet restore --project ./song_of_the_day/song_of_the_day.csproj
|
||||||
# Build and publish a release
|
# Build and publish a release
|
||||||
RUN dotnet publish ./song_of_the_day/song_of_the_day.csproj -o out
|
RUN dotnet publish --project ./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
|
||||||
|
12
HISTORY.md
12
HISTORY.md
@ -5,22 +5,10 @@ Changelog
|
|||||||
(unreleased)
|
(unreleased)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Fix
|
|
||||||
~~~
|
|
||||||
- Remove unnecessary dotnet runtime download in CI job refs NOISSUE.
|
|
||||||
[Simon Diesenreiter]
|
|
||||||
|
|
||||||
|
|
||||||
0.1.19 (2025-04-15)
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Fix
|
Fix
|
||||||
~~~
|
~~~
|
||||||
- Improve Docker build refs NOISSUE. [Simon Diesenreiter]
|
- Improve Docker build refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
Other
|
|
||||||
~~~~~
|
|
||||||
|
|
||||||
|
|
||||||
0.1.18 (2025-04-15)
|
0.1.18 (2025-04-15)
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -1 +1 @@
|
|||||||
0.1.20
|
0.1.19
|
||||||
|
Loading…
x
Reference in New Issue
Block a user