mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 02:00:20 +00:00 
			
		
		
		
	Ensure that the changelog is present
This commit is contained in:
		
							parent
							
								
									ab390adb69
								
							
						
					
					
						commit
						780e0ac7c2
					
				
							
								
								
									
										102
									
								
								.github/workflows/build-and-release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										102
									
								
								.github/workflows/build-and-release.yml
									
									
									
									
										vendored
									
									
								
							@ -7,8 +7,62 @@ env:
 | 
			
		||||
  RETENTION_RELEASE_ASSETS: 30
 | 
			
		||||
    
 | 
			
		||||
jobs:
 | 
			
		||||
  read_metadata:
 | 
			
		||||
    name: Read metadata
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    outputs:
 | 
			
		||||
      formatted_version: ${{ steps.format_metadata.outputs.formatted_version }}
 | 
			
		||||
      formatted_build_time: ${{ steps.format_metadata.outputs.formatted_build_time }}
 | 
			
		||||
      changelog: ${{ steps.read_changelog.outputs.changelog }}
 | 
			
		||||
      version: ${{ steps.format_metadata.outputs.version }}
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout repository
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
 | 
			
		||||
      - name: Read and format metadata
 | 
			
		||||
        id: format_metadata
 | 
			
		||||
        run: |
 | 
			
		||||
          # Read the first two lines of the metadata file:
 | 
			
		||||
          version=$(sed -n '1p' metadata.txt)
 | 
			
		||||
          build_time=$(sed -n '2p' metadata.txt)
 | 
			
		||||
 | 
			
		||||
          # Format the version:
 | 
			
		||||
          formatted_version="v${version}"
 | 
			
		||||
 | 
			
		||||
          # Format the build time according to RFC 3339:
 | 
			
		||||
          formatted_build_time=$(date -d "${build_time}" --utc +'%Y-%m-%dT%H:%M:%SZ')
 | 
			
		||||
 | 
			
		||||
          # Log the formatted metadata:
 | 
			
		||||
          echo "Formatted version: '${formatted_version}'"
 | 
			
		||||
          echo "Formatted build time: '${formatted_build_time}'"
 | 
			
		||||
 | 
			
		||||
          # Set the outputs:
 | 
			
		||||
          echo "formatted_version=${formatted_version}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "FORMATTED_VERSION=${formatted_version}" >> $GITHUB_ENV
 | 
			
		||||
          echo "formatted_build_time=${formatted_build_time}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "version=${version}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
 | 
			
		||||
      - name: Read changelog
 | 
			
		||||
        id: read_changelog
 | 
			
		||||
        run: |
 | 
			
		||||
          # Ensure, that the matching changelog file for the current version exists:
 | 
			
		||||
          if [ ! -f "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md" ]; then
 | 
			
		||||
              echo "Changelog file 'app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md' not found"
 | 
			
		||||
              exit 1
 | 
			
		||||
          fi
 | 
			
		||||
          
 | 
			
		||||
          # Read the changelog file:
 | 
			
		||||
          changelog=$(cat "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md")
 | 
			
		||||
 | 
			
		||||
          # Set the output:
 | 
			
		||||
          echo "changelog<<EOOOF" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "${changelog}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "EOOOF" >> "$GITHUB_OUTPUT"
 | 
			
		||||
 | 
			
		||||
  build_main:
 | 
			
		||||
    name: Build app (${{ matrix.dotnet_runtime }})
 | 
			
		||||
    needs: read_metadata
 | 
			
		||||
    
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: true
 | 
			
		||||
@ -325,6 +379,7 @@ jobs:
 | 
			
		||||
  build_linux_arm64:
 | 
			
		||||
    name: Build app (linux-arm64)
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    needs: read_metadata
 | 
			
		||||
    if: false # disable this job for now
 | 
			
		||||
    
 | 
			
		||||
    steps:
 | 
			
		||||
@ -521,53 +576,6 @@ jobs:
 | 
			
		||||
          if-no-files-found: warn
 | 
			
		||||
          retention-days: ${{ env.RETENTION_INTERMEDIATE_ASSETS }}
 | 
			
		||||
        
 | 
			
		||||
  read_metadata:
 | 
			
		||||
    name: Read metadata
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    outputs:
 | 
			
		||||
      formatted_version: ${{ steps.format_metadata.outputs.formatted_version }}
 | 
			
		||||
      formatted_build_time: ${{ steps.format_metadata.outputs.formatted_build_time }}
 | 
			
		||||
      changelog: ${{ steps.read_changelog.outputs.changelog }}
 | 
			
		||||
      version: ${{ steps.format_metadata.outputs.version }}
 | 
			
		||||
    
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout repository
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
        
 | 
			
		||||
      - name: Read and format metadata
 | 
			
		||||
        id: format_metadata
 | 
			
		||||
        run: |
 | 
			
		||||
          # Read the first two lines of the metadata file:
 | 
			
		||||
          version=$(sed -n '1p' metadata.txt)
 | 
			
		||||
          build_time=$(sed -n '2p' metadata.txt)
 | 
			
		||||
          
 | 
			
		||||
          # Format the version:
 | 
			
		||||
          formatted_version="v${version}"
 | 
			
		||||
          
 | 
			
		||||
          # Format the build time according to RFC 3339:
 | 
			
		||||
          formatted_build_time=$(date -d "${build_time}" --utc +'%Y-%m-%dT%H:%M:%SZ')
 | 
			
		||||
          
 | 
			
		||||
          # Log the formatted metadata:
 | 
			
		||||
          echo "Formatted version: '${formatted_version}'"
 | 
			
		||||
          echo "Formatted build time: '${formatted_build_time}'"
 | 
			
		||||
          
 | 
			
		||||
          # Set the outputs:
 | 
			
		||||
          echo "formatted_version=${formatted_version}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "FORMATTED_VERSION=${formatted_version}" >> $GITHUB_ENV
 | 
			
		||||
          echo "formatted_build_time=${formatted_build_time}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "version=${version}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          
 | 
			
		||||
      - name: Read changelog
 | 
			
		||||
        id: read_changelog
 | 
			
		||||
        run: |
 | 
			
		||||
          # Read the changelog file:
 | 
			
		||||
          changelog=$(cat "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md")
 | 
			
		||||
          
 | 
			
		||||
          # Set the output:
 | 
			
		||||
          echo "changelog<<EOOOF" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "${changelog}" >> "$GITHUB_OUTPUT"
 | 
			
		||||
          echo "EOOOF" >> "$GITHUB_OUTPUT"
 | 
			
		||||
        
 | 
			
		||||
  create_release:
 | 
			
		||||
    name: Prepare & create release
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user