Removed act constraint

This commit is contained in:
2025-07-01 14:35:27 -07:00
parent ba5b32cabc
commit 2d798d72ed
4 changed files with 1 additions and 23 deletions

View File

@@ -1,9 +0,0 @@
ARG VERSION=6.0.401
FROM mcr.microsoft.com/dotnet/sdk:$VERSION
RUN apt update
RUN apt install curl -y
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

View File

@@ -1,11 +0,0 @@
name: dotnet
description: "Run a dotnet command."
inputs:
command:
description: "Dotnet command to run."
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}

View File

@@ -97,7 +97,7 @@ runs:
with:
file: ${{ inputs.resultsDirectory }}
- name: "Upload artifacts."
if: ${{ !env.ACT && ( inputs.uploadArtifacts == 'true' ) }}
if: ${{ inputs.uploadArtifacts == 'true' }}
uses: https://github.com/actions/upload-artifact@v3
with:
name: ${{ inputs.artifactName }}

View File

@@ -1,2 +0,0 @@
#!/bin/sh
dotnet $@