This commit is contained in:
2025-11-07 21:44:18 +08:00
parent 3da94cb973
commit 5fe8fb340f

View File

@@ -1,18 +1,18 @@
# action.yml # action.yml
name: 'build docker image and push to code' name: "build docker image and push to code"
description: 'build docker image and push to simcu code' description: "build docker image and push to simcu code"
inputs: inputs:
dockerfile: dockerfile:
description: 'if set, will use this to build' description: "if set, will use this to build"
required: false required: false
default: '' default: ""
runs: runs:
using: 'composite' using: "composite"
steps: steps:
- name: build .net app - name: build .net app
uses: docker://mcr.microsoft.com/dotnet/sdk:8.0 uses: docker://mcr.microsoft.com/dotnet/sdk:9.0
with: with:
args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App -p:Version=${{ github.ref_name }}
- name: create dockerfile - name: create dockerfile
if: ${{ inputs.dockerfile == '' }} if: ${{ inputs.dockerfile == '' }}
@@ -20,7 +20,7 @@ runs:
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:8.0" > Dockerfile && \ -c 'echo "FROM mcr.microsoft.com/dotnet/runtime:9.0" > Dockerfile && \
echo "ENV TZ Asia/Shanghai" >> Dockerfile && \ echo "ENV TZ Asia/Shanghai" >> Dockerfile && \
echo "COPY dist /home" >> Dockerfile && \ echo "COPY dist /home" >> Dockerfile && \
echo "WORKDIR /home" >> Dockerfile && \ echo "WORKDIR /home" >> Dockerfile && \