mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-11-04 14:49:32 +00:00 
			
		
		
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			471 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			471 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Docker Build
 | 
						|
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    types: [opened, synchronize, reopened, assigned, edited, ready_for_review]
 | 
						|
  push:
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
jobs:
 | 
						|
  buildx:
 | 
						|
    name: Docker Build
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
    - name: Checkout
 | 
						|
      uses: actions/checkout@v5
 | 
						|
    - name: Setup Docker Buildx
 | 
						|
      uses: docker/setup-buildx-action@v3.11.1
 | 
						|
      id: buildx
 | 
						|
      with:
 | 
						|
        install: true
 | 
						|
    - name: Build
 | 
						|
      run: docker build . # will run buildx
 |