Compare commits
No commits in common. "b385c9df02f1aaea44baf77e0d1c9688184a5f24" and "99f9efc0f960f51a2d5d438e7eed203ce91b1dc7" have entirely different histories.
b385c9df02
...
99f9efc0f9
11
action.yml
11
action.yml
@ -1,11 +1,6 @@
|
|||||||
# 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:
|
||||||
@ -15,25 +10,23 @@ 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 use custom dockerfile
|
- name: build docker image
|
||||||
uses: docker://docker:git
|
uses: docker://docker:git
|
||||||
with:
|
with:
|
||||||
entrypoint: "/bin/sh"
|
entrypoint: "/bin/sh"
|
||||||
args: |
|
args: |
|
||||||
-c 'cat ${{ inputs.dockerfile || 'Dockerfile' }} && docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} -f ${{ inputs.dockerfile || 'Dockerfile' }} . && \
|
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \
|
||||||
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 }} && \
|
||||||
|
Loading…
Reference in New Issue
Block a user