23 lines
		
	
	
		
			516 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			516 B
		
	
	
	
		
			YAML
		
	
	
	
| on: workflow_dispatch
 | |
| 
 | |
| name: Build packages
 | |
| 
 | |
| jobs:
 | |
|   build_deb:
 | |
|     name: Build .deb package
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v2
 | |
|       - uses: actions-rs/toolchain@v1
 | |
|         with:
 | |
|           profile: minimal
 | |
|           toolchain: stable
 | |
|           override: true
 | |
|       - run: cargo install cargo-deb
 | |
|       - run: cargo build --release
 | |
|       - run: ./build-manpages.sh
 | |
|       - run: cargo deb
 | |
|       - uses: actions/upload-artifact@v2
 | |
|         with:
 | |
|           path: target/debian/*.deb
 |