Removed act constraint
This commit is contained in:
@@ -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"]
|
||||
@@ -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 }}
|
||||
@@ -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 }}
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
#!/bin/sh
|
||||
dotnet $@
|
||||
Reference in New Issue
Block a user