mirror of
				https://github.com/meshtastic/firmware.git
				synced 2025-10-28 15:22:55 +00:00 
			
		
		
		
	 c73fe85ec8
			
		
	
	
		c73fe85ec8
		
	
	
	
	
		
			
			* Reset the modified files * Fix some changes * Fix some changes * Trunk. That is all. --------- Co-authored-by: Tom <116762865+Nestpebble@users.noreply.github.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Daily Packaging
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: 0 2 * * *
 | |
|   workflow_dispatch:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|     paths:
 | |
|       - debian/**
 | |
|       - "*.rpkg"
 | |
|       - .github/workflows/nightly_packaging.yml
 | |
|       - .github/workflows/build_debian_src.yml
 | |
|       - .github/workflows/package_ppa.yml
 | |
|       - .github/workflows/package_obs.yml
 | |
|       - .github/workflows/hook_copr.yml
 | |
| 
 | |
| permissions:
 | |
|   contents: write
 | |
|   packages: write
 | |
| 
 | |
| jobs:
 | |
|   docker-multiarch:
 | |
|     if: github.repository == 'meshtastic/firmware'
 | |
|     uses: ./.github/workflows/docker_manifest.yml
 | |
|     with:
 | |
|       release_channel: daily
 | |
|     secrets: inherit
 | |
| 
 | |
|   package-ppa:
 | |
|     if: github.repository == 'meshtastic/firmware'
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         series:
 | |
|           - jammy # 22.04 LTS
 | |
|           - noble # 24.04 LTS
 | |
|           - plucky # 25.04
 | |
|           - questing # 25.10
 | |
|     uses: ./.github/workflows/package_ppa.yml
 | |
|     with:
 | |
|       ppa_repo: ppa:meshtastic/daily
 | |
|       series: ${{ matrix.series }}
 | |
|     secrets: inherit
 | |
| 
 | |
|   package-obs:
 | |
|     if: github.repository == 'meshtastic/firmware'
 | |
|     uses: ./.github/workflows/package_obs.yml
 | |
|     with:
 | |
|       obs_project: network:Meshtastic:daily
 | |
|       series: unstable
 | |
|     secrets: inherit
 | |
| 
 | |
|   hook-copr:
 | |
|     if: github.repository == 'meshtastic/firmware'
 | |
|     uses: ./.github/workflows/hook_copr.yml
 | |
|     with:
 | |
|       copr_project: daily
 | |
|     secrets: inherit
 |