mirror of
				https://github.com/GayPizzaSpecifications/foundation.git
				synced 2025-11-04 11:39:39 +00:00 
			
		
		
		
	Release build numbers and resilience in the update service.
This commit is contained in:
		
							
								
								
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							@ -18,6 +18,8 @@ jobs:
 | 
				
			|||||||
        uses: gradle/gradle-build-action@v2
 | 
					        uses: gradle/gradle-build-action@v2
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          arguments: build
 | 
					          arguments: build
 | 
				
			||||||
 | 
					        env:
 | 
				
			||||||
 | 
					          CONCRETE_BUILD_NUMBER: "${{ github.run_number }}"
 | 
				
			||||||
      - name: Organize Artifacts
 | 
					      - name: Organize Artifacts
 | 
				
			||||||
        run: ./tools/organize-artifacts.sh
 | 
					        run: ./tools/organize-artifacts.sh
 | 
				
			||||||
      - name: Upload to Backblaze
 | 
					      - name: Upload to Backblaze
 | 
				
			||||||
 | 
				
			|||||||
@ -2,9 +2,9 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
plugins {
 | 
					plugins {
 | 
				
			||||||
  java
 | 
					  java
 | 
				
			||||||
  id("gay.pizza.foundation.concrete-root") version "0.7.0"
 | 
					  id("gay.pizza.foundation.concrete-root") version "0.8.0"
 | 
				
			||||||
  id("gay.pizza.foundation.concrete-library") version "0.7.0" apply false
 | 
					  id("gay.pizza.foundation.concrete-library") version "0.8.0" apply false
 | 
				
			||||||
  id("gay.pizza.foundation.concrete-plugin") version "0.7.0" apply false
 | 
					  id("gay.pizza.foundation.concrete-plugin") version "0.8.0" apply false
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
allprojects {
 | 
					allprojects {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
plugins {
 | 
					plugins {
 | 
				
			||||||
  id("gay.pizza.foundation.concrete-plugin") version "0.7.0"
 | 
					  id("gay.pizza.foundation.concrete-plugin")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
dependencies {
 | 
					dependencies {
 | 
				
			||||||
 | 
				
			|||||||
@ -21,9 +21,9 @@ object UpdateService {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
      sender.sendMessage("Updates:")
 | 
					      sender.sendMessage("Updates:")
 | 
				
			||||||
      modules.forEach { (name, manifest) ->
 | 
					      modules.forEach { (name, manifest) ->
 | 
				
			||||||
        // Dumb naming problem. Don't want to fix it right now.
 | 
					        // Foolish naming problem. Don't want to fix it right now.
 | 
				
			||||||
        val plugin = if (name == "foundation-core") {
 | 
					        val plugin = if (name == "foundation-core") {
 | 
				
			||||||
          plugins["foundation"]
 | 
					          plugins["foundation"] ?: plugins[name.lowercase()]
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
          plugins[name.lowercase()]
 | 
					          plugins[name.lowercase()]
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user