test
This commit is contained in:
		
							
								
								
									
										24
									
								
								action.yml
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								action.yml
									
									
									
									
									
								
							@@ -4,6 +4,11 @@ description: 'build docker image and push to simcu code'
 | 
			
		||||
runs:
 | 
			
		||||
  using: 'composite'
 | 
			
		||||
  steps:
 | 
			
		||||
  - name: build .net app
 | 
			
		||||
    uses: docker://mcr.microsoft.com/dotnet/sdk:7.0
 | 
			
		||||
    with:
 | 
			
		||||
      args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
 | 
			
		||||
 | 
			
		||||
  - name: create dockerfile
 | 
			
		||||
    uses: docker://ubuntu:latest
 | 
			
		||||
    with:
 | 
			
		||||
@@ -16,20 +21,15 @@ runs:
 | 
			
		||||
         echo "已经构建完DOCKERFILE了" && \
 | 
			
		||||
         cat Dockerfile'
 | 
			
		||||
 | 
			
		||||
  # - name: build .net app
 | 
			
		||||
  #   uses: docker://mcr.microsoft.com/dotnet/sdk:7.0
 | 
			
		||||
  #   with:
 | 
			
		||||
  #     args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
 | 
			
		||||
 | 
			
		||||
  - name: build docker image
 | 
			
		||||
    uses: docker://docker:git
 | 
			
		||||
    env:
 | 
			
		||||
      DOCKER_IMAGE: ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}
 | 
			
		||||
    with:
 | 
			
		||||
      entrypoint: "/bin/sh"
 | 
			
		||||
      args: |
 | 
			
		||||
        -c "echo 这是一个测试信息"
 | 
			
		||||
        -c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1 .'
 | 
			
		||||
        -c "echo 已经构建完了"
 | 
			
		||||
        -c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}'
 | 
			
		||||
        -c "echo 登录仓库"
 | 
			
		||||
        -c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1'    
 | 
			
		||||
        -c "echo 成功了" 
 | 
			
		||||
        -c 'docker build -t ${{env.DOCKER_IMAGE}} . && \
 | 
			
		||||
           echo ${{env.DOCKER_IMAGE}}已经构建完了 && \
 | 
			
		||||
           docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \
 | 
			
		||||
           docker push ${{env.DOCKER_IMAGE}} && \
 | 
			
		||||
           echo ${{env.DOCKER_IMAGE}}推送成功'
 | 
			
		||||
		Reference in New Issue
	
	Block a user