12 Commits
7.0 ... main

Author SHA1 Message Date
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
99f9efc0f9 update 8.0 2024-01-18 00:57:41 +08:00
2 changed files with 15 additions and 8 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:7.0 uses: docker://mcr.microsoft.com/dotnet/sdk:8.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
- name: create dockerfile - name: create dockerfile
if: ${{ inputs.dockerfile == '' }}
uses: docker://ubuntu:latest uses: docker://ubuntu:latest
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile && \ -c 'echo "FROM mcr.microsoft.com/dotnet/runtime:8.0" > 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 && \
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile && \ echo "ENTRYPOINT [\"./App\"]" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \ echo "已经构建完DOCKERFILE了" && \
cat 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 }}推送成功'