Compare commits

..

10 Commits

Author SHA1 Message Date
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 9 additions and 2 deletions

View File

View File

@ -1,6 +1,11 @@
# 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:
@ -10,23 +15,25 @@ runs:
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:8.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 ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} -f ${{ inputs.dockerfile || 'Dockerfile' }} . && \
echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \ echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \
docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \ docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \ docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \