File tree 3 files changed +26
-11
lines changed
3 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,27 @@ jobs:
17
17
report-test-results :
18
18
name : Report Test Results
19
19
runs-on : ubuntu-latest
20
+ if : github.event.workflow_run.conclusion != 'skipped'
21
+
22
+ permissions :
23
+ checks : write
24
+ pull-requests : write
25
+ # actions: read
26
+ # only needed for private repository
27
+ # contents: read
28
+ # issues: read
29
+
20
30
steps :
21
- - name : Upload Test Results
22
- uses : dorny/test-reporter@eaa763f6ffc21c7a37837f56cd5f9737f27fc6c8 # v1.8.0
31
+ - name : Download and Extract Artifacts
32
+ uses : dawidd6/action-download-artifact@71072fbb1229e1317f1a8de6b04206afb461bd67 # v3.1.2
33
+ with :
34
+ run_id : ${{ github.event.workflow_run.id }}
35
+ path : artifacts
36
+
37
+ - name : Publish Test Results
38
+ uses : EnricoMi/publish-unit-test-result-action@f355d34d53ad4e7f506f699478db2dd71da9de5f # v2.15.1
23
39
with :
24
- artifact : csharp-tests
25
- name : C# Unit Test Results
26
- path : " **/*.trx"
27
- reporter : dotnet-trx
28
- fail-on-error : false
40
+ commit : ${{ github.event.workflow_run.head_sha }}
41
+ event_file : artifacts/Event File/event.json
42
+ event_name : ${{ github.event.workflow_run.event }}
43
+ files : " artifacts/**/*.trx"
Original file line number Diff line number Diff line change 4
4
# See the LICENSE and NOTICES files in the project root for more information.
5
5
6
6
# Tag aspnet:8.0-alpine
7
- FROM mcr.microsoft.com/dotnet/aspnet@sha256:de73c1e1abd69d3ffa2658075ad4cd4edccfef37eb92ddda2c78f20173403238
7
+ FROM mcr.microsoft.com/dotnet/aspnet@sha256:ba398f8c6a0469436cc115bfbd278002baf4ce9423b6d8a9e904da6adc31a23d
8
8
LABEL maintainer=
"Ed-Fi Alliance, LLC and Contributors <[email protected] >"
9
9
10
10
ENV VERSION="1.0.0"
@@ -22,7 +22,7 @@ COPY ./Docker/plainTextNamedConnections.template.json /app/plainTextNamedConnect
22
22
COPY ./Docker/run.sh /app/run.sh
23
23
24
24
RUN apk --no-cache add unzip=~6 dos2unix=~7 bash=~5 gettext=~0 postgresql13-client=~13 icu=~74 curl=~8 && \
25
- wget -O /app/ApiPublisher.zip https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_apis/packaging/feeds/EdFi/nuget/packages/EdFi.ApiPublisher/versions/${VERSION}/content && \
25
+ wget -nv - O /app/ApiPublisher.zip https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_apis/packaging/feeds/EdFi/nuget/packages/EdFi.ApiPublisher/versions/${VERSION}/content && \
26
26
unzip /app/ApiPublisher.zip 'EdFi.ApiPublisher/**' -d /app/ && \
27
27
mv /app/EdFi.ApiPublisher/* /app/ && \
28
28
rmdir /app/EdFi.ApiPublisher && \
Original file line number Diff line number Diff line change 5
5
6
6
7
7
# tag sdk:8.0 alpine
8
- FROM mcr.microsoft.com/dotnet/sdk@sha256:e9f2d4a0452e823d615bf6da6e0575489d8037498571db6fa1c6ce6fb9987ecd AS build
8
+ FROM mcr.microsoft.com/dotnet/sdk@sha256:91cb46b0ee207d0df53e2e38f2e4013fe2668ab52dcca13c971afbbef94c83ef AS build
9
9
WORKDIR /source
10
10
11
11
COPY ./EdFi.Tools.ApiPublisher.Cli/ EdFi.Tools.ApiPublisher.Cli/
@@ -36,7 +36,7 @@ RUN dotnet publish -c Release -o /app/EdFi.Tools.ApiPiblisher.Cli --no-build --n
36
36
37
37
38
38
# Tag aspnet:8.0 alpine
39
- FROM mcr.microsoft.com/dotnet/aspnet@sha256:de73c1e1abd69d3ffa2658075ad4cd4edccfef37eb92ddda2c78f20173403238
39
+ FROM mcr.microsoft.com/dotnet/aspnet@sha256:ba398f8c6a0469436cc115bfbd278002baf4ce9423b6d8a9e904da6adc31a23d
40
40
LABEL maintainer=
"Ed-Fi Alliance, LLC and Contributors <[email protected] >"
41
41
42
42
# Alpine image does not contain Globalization Cultures library so we need to install ICU library to get fopr LINQ expression to work
You can’t perform that action at this time.
0 commit comments