Initial image build attempt
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				Build and push / Build and push images (push) Failing after 19s
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	Build and push / Build and push images (push) Failing after 19s
				
			This commit is contained in:
		
							
								
								
									
										33
									
								
								.gitea/workflows/build.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								.gitea/workflows/build.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,33 @@
 | 
			
		||||
name: Build and push
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    name: Build and push images
 | 
			
		||||
    runs-on: ubuntu-22.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: actions/checkout@v4
 | 
			
		||||
      - name: Install buildah
 | 
			
		||||
        run: |
 | 
			
		||||
          apt-get -y update
 | 
			
		||||
          apt-get -y install buildah
 | 
			
		||||
 | 
			
		||||
      - name: Build Ubuntu 22.04
 | 
			
		||||
        id: build
 | 
			
		||||
        uses: redhat-actions/buildah-build@v2
 | 
			
		||||
        with:
 | 
			
		||||
          image: git.nul.ie/dev/actions-ubuntu
 | 
			
		||||
          tags: '22.04'
 | 
			
		||||
          containerfiles: |
 | 
			
		||||
            ubuntu.Containerfile
 | 
			
		||||
      - name: Push Ubuntu 22.04
 | 
			
		||||
        uses: redhat-actions/push-to-registry@v2
 | 
			
		||||
        with:
 | 
			
		||||
          image: ${{ steps.build.outputs.image }}
 | 
			
		||||
          tags: ${{ steps.build.outputs.tags }}
 | 
			
		||||
          registry: git.nul.ie
 | 
			
		||||
          username: dev
 | 
			
		||||
          password: ${{ secrets.PUSH_TOKEN }}
 | 
			
		||||
		Reference in New Issue
	
	Block a user