Compare commits

12 Commits

Author SHA1 Message Date
5fe8fb340f 9.0 2025-11-07 21:44:18 +08:00
3da94cb973 use var instead of env 2024-06-14 02:49:22 +08:00
b385c9df02 a 2024-04-19 13:22:10 +08:00
b6989d13e9 test 2024-04-18 03:24:24 +08:00
0122b62cf5 test 2024-04-18 03:02:47 +08:00
51458b3727 test ci 2024-04-18 02:56:00 +08:00
af0f2e4b22 test 2024-04-18 02:50:37 +08:00
05caf5b155 test if 2024-04-18 02:44:44 +08:00
c80c466316 fix 2024-04-18 02:19:33 +08:00
db4d55118d fix 2024-04-18 02:14:27 +08:00
26bee38ca5 允许使用项目的Dockerfile 2024-04-16 16:18:24 +08:00
8d600bde36 fix TZ 2024-04-16 10:50:57 +08:00
2 changed files with 35 additions and 28 deletions

View File

View File

@@ -1,33 +1,40 @@
# 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:
dockerfile:
description: "if set, will use this to build"
required: false
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
uses: docker://ubuntu:latest if: ${{ inputs.dockerfile == '' }}
with: uses: docker://ubuntu:latest
entrypoint: "/bin/bash" with:
args: | entrypoint: "/bin/bash"
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:8.0" > Dockerfile && \ args: |
echo "COPY dist /home" >> Dockerfile && \ -c 'echo "FROM mcr.microsoft.com/dotnet/runtime:9.0" > Dockerfile && \
echo "WORKDIR /home" >> Dockerfile && \ echo "ENV TZ Asia/Shanghai" >> Dockerfile && \
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile && \ echo "COPY dist /home" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \ echo "WORKDIR /home" >> Dockerfile && \
cat Dockerfile' echo "ENTRYPOINT [\"./App\"]" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \
cat Dockerfile'
- name: build docker image - name: build docker image use custom dockerfile
uses: docker://docker:git uses: docker://docker:git
with: with:
entrypoint: "/bin/sh" entrypoint: "/bin/sh"
args: | args: |
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \ -c 'cat ${{ inputs.dockerfile || 'Dockerfile' }} && docker build -t ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} -f ${{ inputs.dockerfile || 'Dockerfile' }} . && \
echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \ echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \
docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \ docker login ${{vars.DOCKER_REGISTRY}} -u ${{vars.DOCKER_USER}} -p ${{vars.DOCKER_PASS}} && \
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \ docker push ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \
echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功' echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功'