mirror of
				https://github.com/dockersrc/ubuntu
				synced 2025-10-31 02:02:28 -04:00 
			
		
		
		
	
		
			Some checks failed
		
		
	
	ubuntu-21-04 / ubuntu-21-04 (push) Failing after 3m1s
				
			ubuntu-20-04 / ubuntu-20-04 (push) Failing after 3m5s
				
			ubuntu-19-04 / ubuntu-19-04 (push) Failing after 3m25s
				
			ubuntu-23-04 / ubuntu-23-04 (push) Failing after 2m39s
				
			ubuntu-23-10 / ubuntu-23-10 (push) Failing after 4m6s
				
			ubuntu-22-04 / ubuntu-22-04 (push) Successful in 1h36m38s
				
			ubuntu-24-04 / ubuntu-24-04 (push) Failing after 3h12m22s
				
			ubuntu-24-10 / ubuntu-24-10 (push) Failing after 3h14m41s
				
			ubuntu-latest / ubuntu-latest (push) Failing after 3h11m21s
				
			.gitea/workflows/docker.19.04.yaml .gitea/workflows/docker.20.04.yaml .gitea/workflows/docker.21.04.yaml .gitea/workflows/docker.22.04.yaml .gitea/workflows/docker.23.04.yaml .gitea/workflows/docker.23.10.yaml .gitea/workflows/docker.24.04.yaml .gitea/workflows/docker.24.10.yaml .gitea/workflows/docker.yaml
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: ubuntu-20-04
 | |
| 
 | |
| on: push
 | |
| 
 | |
| jobs:
 | |
|   ubuntu-20-04:
 | |
|     runs-on: act_runner
 | |
|     container:
 | |
|       image: catthehacker/ubuntu:act-latest
 | |
|     env:
 | |
|       RUNNER_TOOL_CACHE: /toolcache
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v3
 | |
| 
 | |
|       - name: Set up QEMU
 | |
|         uses: docker/setup-qemu-action@v2
 | |
| 
 | |
|       - name: Get Meta
 | |
|         id: meta
 | |
|         env:
 | |
|           TAG: 20.04
 | |
|           ORG: casjaysdev
 | |
|           HUB: docker.io
 | |
|         run: |
 | |
|           echo DATE_TAG=$(date +'%y%m') >> $GITHUB_OUTPUT
 | |
|           echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT
 | |
|           echo DOCKER_TAG=$([ -n "$TAG" ] && echo $TAG || echo "20.04") >> $GITHUB_OUTPUT
 | |
|           echo DOCKER_HUB=$([ -n "$HUB" ] && echo $HUB || echo "docker.io") >> $GITHUB_OUTPUT
 | |
|           echo DOCKER_ORG=$([ -n "$ORG" ] && echo "$ORG" || echo "casjaysdev") >> $GITHUB_OUTPUT
 | |
|           echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}' | sed 's|^docker-||g') >> $GITHUB_OUTPUT
 | |
| 
 | |
|       - name: Set up Docker BuildX
 | |
|         uses: docker/setup-buildx-action@v2
 | |
| 
 | |
|       - name: Login to DockerHub
 | |
|         uses: docker/login-action@v2
 | |
|         with:
 | |
|           password: ${{ secrets.DOCKER_TOKEN }}
 | |
|           username: ${{ secrets.DOCKER_USERNAME }}
 | |
|           registry: ${{ steps.meta.outputs.DOCKER_HUB }}
 | |
| 
 | |
|       - name: Build and push
 | |
|         uses: docker/build-push-action@v4
 | |
|         with:
 | |
|           context: .
 | |
|           file: ./Dockerfile.21.04
 | |
|           platforms: |
 | |
|             linux/amd64
 | |
|             linux/arm64
 | |
|           push: true
 | |
|           tags: | # replace it with your local IP and tags
 | |
|             ${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:focal
 | |
|             ${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.DOCKER_TAG }}
 |