Compare commits

...

10 Commits

Author SHA1 Message Date
xRain b385c9df02 a 2024-04-19 13:22:10 +08:00
xRain b6989d13e9 test 2024-04-18 03:24:24 +08:00
xRain 0122b62cf5 test 2024-04-18 03:02:47 +08:00
xRain 51458b3727 test ci 2024-04-18 02:56:00 +08:00
xRain af0f2e4b22 test 2024-04-18 02:50:37 +08:00
xRain 05caf5b155 test if 2024-04-18 02:44:44 +08:00
xRain c80c466316 fix 2024-04-18 02:19:33 +08:00
xRain db4d55118d fix 2024-04-18 02:14:27 +08:00
xRain 26bee38ca5 允许使用项目的Dockerfile 2024-04-16 16:18:24 +08:00
xRain 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
name: 'build docker image and push to code'
description: 'build docker image and push to simcu code'
inputs:
dockerfile:
description: 'if set, will use this to build'
required: false
default: ''
runs:
using: 'composite'
steps:
@ -10,23 +15,25 @@ runs:
args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
- name: create dockerfile
if: ${{ inputs.dockerfile == '' }}
uses: docker://ubuntu:latest
with:
entrypoint: "/bin/bash"
args: |
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:8.0" > Dockerfile && \
echo "ENV TZ Asia/Shanghai" >> Dockerfile && \
echo "COPY dist /home" >> Dockerfile && \
echo "WORKDIR /home" >> Dockerfile && \
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \
cat Dockerfile'
- name: build docker image
- name: build docker image use custom dockerfile
uses: docker://docker:git
with:
entrypoint: "/bin/sh"
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 }}已经构建完了 && \
docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \